Files
coord-keeper/src/App.jsx
2025-03-17 23:39:00 -03:00

19 lines
413 B
JavaScript

import { useState } from "react";
import Barra from "./components/Barra";
import Keeper from "./components/coordkeeper";
function App() {
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} />
</div>
</div>
);
}
export default App;