'use client' import type { FC } from 'react' import { useAppContext } from '@/context/app-context' import { Theme } from '@/types/app' import cn from '@/utils/classnames' type Props = { status: string children?: React.ReactNode } const StatusContainer: FC = ({ status, children, }) => { const { theme } = useAppContext() return (
{children}
) } export default StatusContainer