Skip to content

Commit

Permalink
Merge pull request #1 from Tianyou-Xie/dev
Browse files Browse the repository at this point in the history
Merge about and readme features to main
  • Loading branch information
Tianyou-Xie authored May 8, 2024
2 parents b16aeea + 105a44b commit ad0e7a1
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import ReactDOM from 'react-dom/client';
import { Route, Switch } from 'wouter';
import IndexPage from './pages';
import GoodbyePage from './pages/goodbye';
import About from './pages/about';

import './index.css';

Expand All @@ -12,7 +13,7 @@ ReactDOM.createRoot(document.getElementById('root')!).render(
<Switch>
<Route path='/' component={IndexPage} />
<Route path='/goodbye' component={GoodbyePage} />

<Route path='/about' component={About} />
<Route>404 Not Found</Route>
</Switch>
</React.StrictMode>,
Expand Down
19 changes: 19 additions & 0 deletions client/src/pages/about/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
const About = () => {
return (
<html>
<body>
Team Name: BBY-07
Team Members:
<ul>
<li> Ole Lammers </li>
<li> Kamal Dolikay </li>
<li> Marcus V Lages </li>
<li> Tianyou Xie </li>
<li> Samarjit Bhogal </li>
</ul>
</body>
</html>
);
}

export default About;

0 comments on commit ad0e7a1

Please sign in to comment.