app_totito_next/app/page.jsx

13 lines
308 B
React
Raw Permalink Normal View History

2024-09-09 11:35:42 -06:00
import Tablero from "./tablero";
import AlertProvider from "@/context/AlertWrapper";
2024-09-06 15:57:59 -06:00
2024-09-09 11:35:42 -06:00
export default function HomePage() {
return (
2024-09-06 15:57:59 -06:00
<div className="container mx-auto">
2024-09-09 11:35:42 -06:00
<AlertProvider>
<Tablero className="m-5 p-2" />
</AlertProvider>
2024-09-06 15:57:59 -06:00
</div>
)
}