initial commit

This commit is contained in:
2025-03-11 02:09:59 -03:00
commit 7c9c375029
16 changed files with 2232 additions and 0 deletions

18
src/App.jsx Normal file
View File

@@ -0,0 +1,18 @@
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;