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 ProfileEdit from './profile/edit'; import ProfilePasswordEdit from './profile/password_edit'; import ProfileWithdrawal from './profile/withdrawal'; import Search from './search'; import { BrowserRouter, Route, Switch } from 'react-router-dom'; export default class ChildApp extends Component { render() { return (
); } }