Skip to content
This repository was archived by the owner on Sep 14, 2022. It is now read-only.

Commit 29c1458

Browse files
committed
feat: add Fixed component
1 parent d09851b commit 29c1458

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/components/Fixed.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import React from "react";
2+
import type { FC } from "react";
3+
4+
interface Props {
5+
code: string;
6+
}
7+
8+
export const Fixed: FC<Props> = ({ code }) => <pre>{code}</pre>;

0 commit comments

Comments
 (0)