cleaning up state and starting using other compoonents
This commit is contained in:
@@ -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>;
|
||||
}
|
||||
Reference in New Issue
Block a user