app_totito_next/app/layout.js

11 lines
196 B
JavaScript
Raw Normal View History

2024-09-06 12:19:33 -06:00
import Tablero from "./tablero"
2024-09-06 12:06:39 -06:00
2024-09-06 12:19:33 -06:00
const totito=()=>{
return(
<div className="container mx-auto">
<Tablero className="m-5 p-2"/>
</div>
)
2024-09-06 12:06:39 -06:00
}
2024-09-06 12:19:33 -06:00
export default totito