진행 중인 프로젝트에서 모달 창이 필요했는데, react native에서 제공하는 기본 Alert 스타일은 스타일 편집이 불가해서 그냥 새로 컴포넌트 형태로 만들었다export default class AlertModal extends Component { constructor(props) { super(props); } render() { return ( { this.props.setModalVisible(false); }} > ) }}우선 위와 같이..