Skip to content

Commit

Permalink
fix(Layout): remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardoliron committed Aug 18, 2023
1 parent 4c5849b commit 38c0b1b
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/routes/Layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { FoodList } from "../types/food";
import { Link, Outlet, useParams } from "react-router-dom";
import { Outlet } from "react-router-dom";
import { useState } from "react";
import HeaderBar from "../components/HeaderBar";
import SearchResult from "../components/SearchResult";
Expand All @@ -11,10 +11,8 @@ import {
Box,
Drawer,
ThemeProvider,
Stack,
styled,
alpha,
} from "@mui/material";
Stack
} from "@mui/material";
import SideBarDialog from "../components/SideBarDialog";
import MonthBar from "../components/MonthBar";

Expand Down

0 comments on commit 38c0b1b

Please sign in to comment.