Skip to content

Commit

Permalink
clean naming
Browse files Browse the repository at this point in the history
  • Loading branch information
alexfauquette committed Dec 15, 2023
1 parent f8683a3 commit 1222719
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions app/[legislature]/dossier/[id]/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,13 @@
import React from "react";

import Box from "@mui/material/Box";
import Tab from "@mui/material/Tab";
import Tabs from "@mui/material/Tabs";

import { HeroSection } from "@/components/folders/HeroSection";
import { PreviewTab } from "@/components/folders/PreviewTab";
import { DebateTab } from "@/components/folders/DebateTab";
import { getDossier } from "@/repository/database";
import Tabs2 from "./Tabs";
import Tabs from "./Tabs";

export default async function Dossier({ children }: React.PropsWithChildren) {
return (
<>
<HeroSection />
<Tabs2 />
<Tabs />
{children}
</>
);
Expand Down

0 comments on commit 1222719

Please # to comment.