Started migration to material-ui

This commit is contained in:
Cassio Santos
2020-06-09 20:50:16 -03:00
parent afaec2b3c6
commit d91c0c5155
28 changed files with 996 additions and 54 deletions

View File

@@ -4,6 +4,7 @@ import { toast, ToastContainer } from "react-toastify";
import Home from "./pages/Home/Home";
import Chat from "./pages/Chat/Chat";
import Chat2 from "./pages/Chat-Material/Chat2";
import Profile from "./pages/Profile/Profile";
import Signup from "./pages/Signup/Signup";
import Login from "./pages/Login/Login";
@@ -52,6 +53,11 @@ const App = () => {
path="/chat"
render={props => <Chat showToast={showToast} />}
/>
<Route
exact
path="/chat2"
render={props => <Chat2 showToast={showToast} />}
/>
</Switch>
</BrowserRouter>
);