mirror of
https://git.aramjonghu.dev/AramJonghu/aramjonghu-site.git
synced 2026-09-10 16:53:30 +02:00
12 lines
271 B
TypeScript
12 lines
271 B
TypeScript
import { type ReactElement } from "react";
|
|
import MdProcessor from "./MdProcessor";
|
|
import aboutMd from "../content/about.md?raw";
|
|
|
|
export default function About(): ReactElement {
|
|
return (
|
|
<>
|
|
<MdProcessor content={aboutMd} />
|
|
</>
|
|
);
|
|
}
|