cleaning up state and starting using other compoonents

This commit is contained in:
Arjun Patel
2022-01-12 15:19:55 -08:00
parent 20ffd4fecd
commit 470b78667d
2 changed files with 12 additions and 10 deletions
+8
View File
@@ -0,0 +1,8 @@
import React, { useState } from "react";
import { render } from "react-dom";
export default function DashboardRoom() {
const [count, setCount] = useState(0)
return <div>hi</div>;
}