Wrote CSS for a chatbox

This commit is contained in:
2021-03-17 03:44:38 +11:00
parent e288a43519
commit 8561219542
7 changed files with 783 additions and 16 deletions
+4 -2
View File
@@ -10,8 +10,9 @@ import Markdown from './panels/markdown';
//import a styling template here
//common components
import Header from './panels/header.jsx';
import Footer from './panels/footer.jsx';
import Header from './panels/header';
import Footer from './panels/footer';
import PopupChat from './panels/popup-chat';
const App = props => {
//default render
@@ -32,6 +33,7 @@ const App = props => {
<LazyRoute path='*' component={() => import('./pages/not-found')} />
</Switch>
<PopupChat />
<Footer />
</BrowserRouter>
);