arregladas algunas tabulaciones

This commit is contained in:
2025-03-17 23:39:00 -03:00
parent 5759618904
commit 1b4e6193e8

View File

@@ -1,18 +1,18 @@
import { useState } from 'react' import { useState } from "react";
import Barra from './components/Barra'; import Barra from "./components/Barra";
import Keeper from './components/coordkeeper'; import Keeper from "./components/coordkeeper";
function App() { function App() {
const [type, setType] = useState("overworld"); const [type, setType] = useState("overworld");
return ( return (
<div> <div>
<Barra active={type} setType={setType} /> <Barra active={type} setType={setType} />
<div class="container border text-white vw-100 mt-2 rounded p-2"> <div class="container border text-white vw-100 mt-2 rounded p-2">
<Keeper tipo={type}/> <Keeper tipo={type} />
</div> </div>
</div> </div>
) );
} }
export default App; export default App;