mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-01-23 02:35:14 +00:00
14 lines
229 B
JavaScript
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;
|