#
luxiaotao1123
2024-04-15 53783e6f890c2527ff373f49ebb4e65be9a5f7f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from 'react'
import { useStore } from './store';
 
function App() {
  const store = useStore();
 
  return (
    <>
      <h1>{store.text}</h1>
    </>
  )
}
 
export default App