"use client" import useSound from 'use-sound'; export default function Home() { const [playBoyYouPlay] = useSound("/boyyouplay.m4a"); const [playEatItUp] = useSound("/eatitup.m4a"); const [playGangbusters] = useSound("/gangbusters.m4a"); const [playHusky] = useSound("/husky.m4a"); const [playPrettyFlags] = useSound("/prettyflags.m4a"); const getButton = (title: string, play: () => void) => { return } return (

Doyle Gammill Soundboard

{getButton("Boy you play!", playBoyYouPlay)} {getButton("Eat It Up!", playEatItUp)} {getButton("Gangbusters", playGangbusters)} {getButton("Husky", playHusky)} {getButton("Pretty Flags", playPrettyFlags)}
); }