From 47cbf81c8b9d559973d3db1ec8aee4099e24d6bf Mon Sep 17 00:00:00 2001 From: Aiji Uejima Date: Thu, 15 Dec 2022 22:44:29 +0900 Subject: [PATCH] chore: update example --- examples/with-next-i18next/pages/index.tsx | 48 +++++++++++++--------- 1 file changed, 29 insertions(+), 19 deletions(-) diff --git a/examples/with-next-i18next/pages/index.tsx b/examples/with-next-i18next/pages/index.tsx index a014377..a325ead 100644 --- a/examples/with-next-i18next/pages/index.tsx +++ b/examples/with-next-i18next/pages/index.tsx @@ -8,6 +8,10 @@ import { Select, InputGroup, InputLeftAddon, + Container, + Flex, + Heading, + Spacer, } from "@chakra-ui/react"; import { zodResolver } from "@hookform/resolvers/zod"; import z from "zod"; @@ -58,24 +62,30 @@ export default function HookForm() { ); return ( - <> - - - - + + + + + zod-i18n-map + + + + 🌐 + + +
@@ -124,6 +134,6 @@ export default function HookForm() { Submit - +
); }