Skip to content

Commit

Permalink
Don't use lazy in sandbox until #325
Browse files Browse the repository at this point in the history
  • Loading branch information
thetarnav committed Dec 28, 2024
1 parent 34b7229 commit b8413fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/sandbox/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import * as sweb from 'solid-js/web'
import Recursive from './Recursive.tsx'
import {ThemeExample} from './Theme.tsx'

// import Todos from './Todos.tsx'
const Todos = s.lazy(() => import('./Todos.tsx'))
import Todos from './Todos.tsx'
// const Todos = s.lazy(() => import('./Todos.tsx'))

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

0 comments on commit b8413fa

Please sign in to comment.