Skip to content
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.

Commit

Permalink
fix: Add missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
re-taro authored Dec 14, 2022
1 parent b7f746c commit a97362c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ import { MenuLayout } from "../components/layout/menu";
import { IconButton } from "../components/shared/button/icon-button";
import { Modal } from "../components/shared/modal";
import { MenuForm } from "../components/form/menu";
import type { CreateStoreMenuListItem } from "../libs/firebase/store";
import type {
CreateStoreMenuListItem,
StoreMenuList,
} from "../libs/firebase/store";
import { useAuthContext } from "../contexts/auth";
import { getMenuList, createMenuListItem } from "../libs/firebase/store";

const Menu: NextPageWithLayout = () => {
const [list, setList] = useState<StoreMenuList>([]);
Expand Down

0 comments on commit a97362c

Please sign in to comment.