app_totito_next/app/page.jsx

10 lines
191 B
React
Raw Normal View History

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