Dispatcharr/frontend/src/pages/Home.js

14 lines
229 B
JavaScript

// src/components/Home.js
import React, { useState } from "react";
const Home = () => {
const [newChannel, setNewChannel] = useState("");
return (
<div>
<h1>Home Page</h1>
</div>
);
};
export default Home;