import React, { Component } from 'react'; import Side from './side'; import Meeting from './meeting'; import MeetingDetail from './meeting/detail'; import Parent from './parent'; import ParentDetail from './parent/detail'; import Profile from './profile'; import ProfileDetail from './profile/detail'; import ProfileEdit from './profile/edit'; import ProfilePasswordEdit from './profile/password_edit'; import ProfileWithdrawal from './profile/withdrawal'; // import WithdrawalComplete from './withdrawal/complete'; import Search from './search'; import { BrowserRouter, Route, Switch } from 'react-router-dom'; export default class ChildApp extends Component { render() { return (
{/* */}
); } }