# Component/Modal/NoticeModal > Props: component-modal-noticemodal.props.txt ## Examples ### Base ```tsx { args: { label: 'Label', title: 'Heading', description: 'Body' }, render: args => { const [show, setShow] = useState(false); const [replayYn, setReplayYn] = useState(false); return <> setShow(false)} checked={replayYn} onCheckedChange={e => setReplayYn(e.currentTarget.checked)}> Contents Area ; } } ```