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