Created the Share.jsx page

This commit is contained in:
Mathias Wagner 2024-02-15 00:55:23 +01:00
parent 9e91b80285
commit cd06c21c94
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,10 @@
import {Typography} from "@mui/material";
import {t} from "i18next";
export const Share = () => {
return (
<div>
<Typography>{t("coming_soon")}</Typography>
</div>
)
}