app_totito_next/app/page.jsx

10 lines
191 B
JavaScript

import Tablero from "./tablero"
export default function HomePage(){
return(
<div className="container mx-auto">
<Tablero className="m-5 p-2"/>
</div>
)
}