Skip to content

Commit a95f9ba

Browse files
authored
Update main.jsx
1 parent 8c00730 commit a95f9ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

frameworks/keyed/fre/src/main.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { h, render, useReducer, useCallback, memo } from "../node_modules/fre/dist/fre.esm.js"
1+
import { h, render, useReducer, useCallback, memo } from "fre"
22

33
function random(max) {
44
return Math.round(Math.random() * 1000) % max
@@ -78,7 +78,7 @@ function listReducer(state, action) {
7878
const { data, selected } = state
7979
switch (action.type) {
8080
case "RUN":
81-
return { data: buildData(10), selected: 0 }
81+
return { data: buildData(1000), selected: 0 }
8282
case "RUN_LOTS":
8383
return { data: buildData(10000), selected: 0 }
8484
case "ADD":

0 commit comments

Comments
 (0)