matrix-art

An image gallery for Matrix
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-art.git
Log | Files | Refs | README | LICENSE

Profile.tsx (402B)


      1 import React from "react";
      2 import { useParams } from "react-router-dom";
      3 import { Header } from "../components/header";
      4 
      5 export default function Profile() {
      6     const { userId } = useParams();
      7     return (
      8         <div className="flex flex-col">
      9             <header>
     10                 <Header />
     11             </header>
     12 
     13             <main className="m-12 mt-6">
     14 
     15             </main>
     16         </div>
     17     );
     18 }