arregladas algunas tabulaciones

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

View File

@@ -1,7 +1,7 @@
import { useState } from 'react'
import { useState } from "react";
import Barra from './components/Barra';
import Keeper from './components/coordkeeper';
import Barra from "./components/Barra";
import Keeper from "./components/coordkeeper";
function App() {
const [type, setType] = useState("overworld");
@@ -12,7 +12,7 @@ const [type, setType] = useState("overworld");
<Keeper tipo={type} />
</div>
</div>
)
);
}
export default App;