- Edit src/App.jsx
and save to test HMR
-
- Click on the Vite and React logos to learn more -
- > - ) + +
+ Edit src/App.jsx
and save to test HMR
+
+ Click on the Vite and React logos to learn more +
+ > + ) } export default App diff --git a/2024/12/react_demo1/src/Item.jsx b/2024/12/react_demo1/src/Item.jsx index 6b056da..3d22532 100644 --- a/2024/12/react_demo1/src/Item.jsx +++ b/2024/12/react_demo1/src/Item.jsx @@ -1,9 +1,11 @@ import "bulma"; -import {useState} from "react"; +import {useContext, useState} from "react"; import styles from './Item.module.css'; +import appInfoCtx from "./appInfoCtx.js"; export default function Item({pos, callback}) { let [loading, setLoading] = useState(false); + const appInfo = useContext(appInfoCtx); return (