import React from "react"; import styles from "./WaveText.module.css"; interface Props { active: boolean; } export default function WaveText({ active }: Props) { return (
W h a t    n e x t ?
); }