adding different components for use and starting top header

This commit is contained in:
Arjun Patel
2022-01-14 15:20:47 -08:00
parent 5e73b75d73
commit dcc3633dca
11 changed files with 217 additions and 127 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>;
}