import { ReactNode } from "react" type ViewNoticeProps = { notice: ReactNode } export function ViewNotice(props: ViewNoticeProps) { return (
{props.notice}
) }