Before switching to charts

This commit is contained in:
MuhammadKhalilzadeh
2024-05-08 12:13:09 +03:30
parent 136a1bc9af
commit bac424c45d

View File

@@ -1,14 +1,7 @@
import { useState } from "react";
import PlayGround from "./screens/PlayGround/PlayGround";
function App() {
const [count, setCount] = useState(0);
return (
<>
<div>
<PlayGround />
</div>
<div></div>
</>
);
}