15 lines
245 B
TypeScript
15 lines
245 B
TypeScript
"use client";
|
|
import { GlobalState } from "./contexts/GlobalContext";
|
|
import Component from "./pages/home";
|
|
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div>
|
|
<GlobalState>
|
|
<Component />
|
|
</GlobalState>
|
|
</div>
|
|
);
|
|
}
|