import React from 'react'; import ReactDOM from 'react-dom'; import ParentSide from './side'; import ParentMeetings from './meeting'; import ParentMeetingDetail from './meeting/detail'; import ParentMeetingAdd from './meeting/add'; import ParentMeetingEdit from './meeting/edit'; import ParentFavorite from './favorite'; import ParentSearch from './search'; import ParentChilds from './child'; import ParentChildAdd from './child/add'; import ParentChildEdit from './child/edit'; import ParentChildDetail from './child/detail'; import ParentProfileDetail from './profile'; import ParentProfileEdit from './profile/edit'; import ParentProfilePasswordEdit from './profile/password_edit'; import ParentProfileWithdrawal from './profile/withdrawal'; import { BrowserRouter, Route, Switch } from 'react-router-dom'; import PageChangeHandler from '../component/page_change_handler'; import ScrollToTop from '../component/scroll_top'; export const App = () => { return (
); } if(document.getElementById('p-app')){ ReactDOM.render( , document.getElementById('p-app') ) }