import React, { useState } from "react"; import { createStation } from "../utils/StationsCreate"; // I UNDERSTAND THIS!! --Noah function CreateStation() { const [name, setName] = useState(""); const [description, setDescription] = useState(""); const [joinCode, setJoinCode] = useState(""); const handleCreateStation = () => { setJoinCode(createStation(name, description)); }; return (
{/* Left Section - Vinyl Animation */}
{/* Animated Music Notes */}
{/* Right Section - Create Station Form */}

Create a Station on Serena