import TextInputArea from '@/components/TextInputArea'; import { formatBytes } from '@/utils/format'; import StatCard from './components/StatCard'; import { useTextStatistics } from './useTextStatistics'; export default function Index() { const { text, stats, setText } = useTextStatistics(); return (
); }