mirror of
https://git.aramjonghu.dev/AramJonghu/aramjonghu-site.git
synced 2026-09-04 14:53:30 +02:00
12 lines
312 B
TypeScript
12 lines
312 B
TypeScript
import { type ReactElement } from "react";
|
|
import MdProcessor from "./MdProcessor";
|
|
import currentActivityMd from "../content/current-activity.md?raw";
|
|
|
|
export default function CurrentActivity(): ReactElement {
|
|
return (
|
|
<>
|
|
<MdProcessor content={currentActivityMd} />
|
|
</>
|
|
);
|
|
}
|