Remove some unused imports

This commit is contained in:
2022-10-18 14:07:33 +02:00
parent bdf7dfdc3c
commit 4438067904
5 changed files with 3 additions and 8 deletions

View File

@ -4,8 +4,6 @@ import Layout from "../../../components/Blog/Layout";
import { generateContent, getContentList } from "../../../lib/content/generateBackend";
import type { ContentList, ProjectRender } from "../../../lib/content/types";
import styles from "../../../styles/Blog/Content.module.scss";
const Post: NextPage<{ content: ProjectRender }> = ({ content }) => {
return <Layout title={`${content.title} - c0ntroller.de`}>
<ContentPage content={content} />