Created the Achievements.jsx

This commit is contained in:
Mathias Wagner 2023-11-13 20:08:10 +01:00
parent 335331b9c0
commit 7fc6deceeb
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,12 @@
import {useParams} from "react-router-dom";
export const Achievements = () => {
const params = useParams();
const guildId = params.id;
return (
<div>
Achievements
</div>
)
}