From 074c1fba509987e9ee8f9b1593d3e2a205127f10 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 16 Mar 2025 00:14:59 +0900 Subject: feat(frontend): add InlineCode component --- frontend/app/components/Gaming/InlineCode.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 frontend/app/components/Gaming/InlineCode.tsx (limited to 'frontend/app/components/Gaming/InlineCode.tsx') diff --git a/frontend/app/components/Gaming/InlineCode.tsx b/frontend/app/components/Gaming/InlineCode.tsx new file mode 100644 index 0000000..c90cad4 --- /dev/null +++ b/frontend/app/components/Gaming/InlineCode.tsx @@ -0,0 +1,11 @@ +type Props = { + code: string; +}; + +export default function InlineCode({ code }: Props) { + return ( + + {code} + + ); +} -- cgit v1.2.3-70-g09d2