arregladas algunas tabulaciones
This commit is contained in:
12
src/App.jsx
12
src/App.jsx
@@ -1,18 +1,18 @@
|
||||
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");
|
||||
const [type, setType] = useState("overworld");
|
||||
return (
|
||||
<div>
|
||||
<Barra active={type} setType={setType} />
|
||||
<div class="container border text-white vw-100 mt-2 rounded p-2">
|
||||
<Keeper tipo={type}/>
|
||||
<Keeper tipo={type} />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
export default App;
|
||||
|
||||
Reference in New Issue
Block a user