add i18n, products, productors and forms as tables
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
import { NavLink } from "react-router";
|
||||
import { t } from "../../config/i18n";
|
||||
import { t } from "@/config/i18n";
|
||||
import "./index.css";
|
||||
|
||||
export function Navbar() {
|
||||
return (
|
||||
<nav>
|
||||
<NavLink to="/">{t("home")}</NavLink>
|
||||
<NavLink to="/dashboard">{t("dashboard")}</NavLink>
|
||||
<NavLink to="/forms">{t("forms")}</NavLink>
|
||||
<NavLink to="/">{t("home", {capfirst: true})}</NavLink>
|
||||
<NavLink to="/dashboard">{t("dashboard", {capfirst: true})}</NavLink>
|
||||
</nav>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user