Search
화면 전체를 덮는 모달 컴포넌트입니다. 열려 있는 동안 배경 스크롤이 차단됩니다.
import { FullScreenModal } from '@coldsurfers/ocean-road' import { useState } from 'react' function MyPage() { const [visible, setVisible] = useState(false) return ( <> <button onClick={() => setVisible(true)}>모달 열기</button> <FullScreenModal visible={visible} onClose={() => setVisible(false)}> <p>전체 화면 콘텐츠</p> </FullScreenModal> </> ) }
visible
boolean
onClose
() => void
children
ReactNode
zIndex
number