type AdminOnlyNoticeProps = { message: string; }; export function AdminOnlyNotice({ message }: AdminOnlyNoticeProps) { return (
{message}
); }