Files
gander/frontend/src/pages/CategoriesPage.tsx
JustIceO7 1b167b60f1 FEAT: OAuth now redirects to last URL signed in
UPDATE: Created the page to display lists of categories
2025-02-11 23:08:26 +00:00

12 lines
211 B
TypeScript

import React from 'react';
const CategoriesPage: React.FC = () => {
return (
<div className="categories-page">
<h1>Categories Page</h1>
</div>
);
};
export default CategoriesPage;