Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make About page in main app #44

Open
micahdbak opened this issue Aug 12, 2024 · 3 comments
Open

Make About page in main app #44

micahdbak opened this issue Aug 12, 2024 · 3 comments
Assignees
Labels
good first issue Good for newcomers

Comments

@micahdbak
Copy link
Collaborator

micahdbak commented Aug 12, 2024

/src/main/index.js

// ...
import { /* ... */, About } from './pages';

// ...

const router = createHashRouter([
  // ...
  { path: '/about', element: <About /> },
  // ...
]);

/src/main/pages/About.js

import React from 'react';
import { Page } from '../components';

export const About = () => {
  return (
    <Page>
      {/* ... */}
    </Page>
  );
};
@micahdbak
Copy link
Collaborator Author

@EarthenSky - you still want to do this?

@EarthenSky
Copy link
Contributor

Not really, but I can do it if necessary. As before, backend & elections pages are priority atm.

If someone else is interested please attempt!

@micahdbak micahdbak added the good first issue Good for newcomers label Sep 19, 2024
@micahdbak
Copy link
Collaborator Author

TODO for @micahdbak add more info about what this page should contain

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

2 participants