6 lines
161 B
TypeScript
6 lines
161 B
TypeScript
import { type FunctionComponent } from "react";
|
|
|
|
export const MusicVisualizer: FunctionComponent = () => (
|
|
<div className="h-full w-full bg-red-500"></div>
|
|
);
|