"use client";
import { Typography } from "@/ui/typography";
import { getRandomColor } from "@/hooks/use-random-colors";
export function RandomColorDemo() {
const color = getRandomColor();
return (
<Typography el="p" prose="h1" style={{ color }}>
useRandomColor
</Typography>
);
}