import "bulma"; 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 (
  • Item {pos}
  • ); }