19 lines
352 B
TypeScript
19 lines
352 B
TypeScript
import { useGlobalStore } from '@/store/global';
|
|
import './index.css';
|
|
import { isEmpty } from 'lodash-es';
|
|
import { Button } from '@/components';
|
|
|
|
function Home() {
|
|
|
|
return (
|
|
<>
|
|
<div>
|
|
<div className="text-3xl font-bold underline">Hello World2</div>
|
|
</div>
|
|
<Button>Click me</Button>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default Home;
|