So much stuff. hljs in backend for example
This commit is contained in:
@ -1,9 +1,11 @@
|
||||
import type { NextPage } from "next";
|
||||
import { useEffect } from "react";
|
||||
import type { ProjectRender, DiaryRender } from "../../lib/content/types";
|
||||
import DiaryPageSelector from "./DiaryPageSelector";
|
||||
|
||||
import styles from "../../styles/Blog/Content.module.scss";
|
||||
|
||||
|
||||
const ContentPage: NextPage<{ content: ProjectRender | DiaryRender }> = ({ content }) => {
|
||||
return (<>
|
||||
{content.type === "diary" ? <DiaryPageSelector title={content.title} pageSelected={content.pageSelected} name={content.name} pages={content.entries} /> : null}
|
||||
|
Reference in New Issue
Block a user