11 lines
196 B
JavaScript
11 lines
196 B
JavaScript
import Tablero from "./tablero"
|
|
|
|
const totito=()=>{
|
|
return(
|
|
<div className="container mx-auto">
|
|
<Tablero className="m-5 p-2"/>
|
|
</div>
|
|
)
|
|
}
|
|
export default totito
|