From 1b4e6193e85689a47ef6db47cbd7f0d8328ec7f9 Mon Sep 17 00:00:00 2001 From: fede Date: Mon, 17 Mar 2025 23:39:00 -0300 Subject: [PATCH] arregladas algunas tabulaciones --- src/App.jsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 0d6247b..d46ef0c 100644 --- a/src/App.jsx +++ b/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 (
- +
- ) + ); } export default App;