Skip to content

Commit b8413fa

Browse files
committed
Don't use lazy in sandbox until #325
1 parent 34b7229 commit b8413fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/sandbox/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import * as sweb from 'solid-js/web'
44
import Recursive from './Recursive.tsx'
55
import {ThemeExample} from './Theme.tsx'
66

7-
// import Todos from './Todos.tsx'
8-
const Todos = s.lazy(() => import('./Todos.tsx'))
7+
import Todos from './Todos.tsx'
8+
// const Todos = s.lazy(() => import('./Todos.tsx'))
99

1010
const doMediumCalc = () => {
1111
Array.from({length: 1000000}, (_, i) => i).sort(() => Math.random() - 5)

0 commit comments

Comments
 (0)