aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/components/Gaming/InlineCode.tsx
blob: c90cad4a3f117025e3063eb49032209e78e7c1ee (plain)
1
2
3
4
5
6
7
8
9
10
11
type Props = {
	code: string;
};

export default function InlineCode({ code }: Props) {
	return (
		<code className="bg-gray-50 rounded-lg border border-gray-300 p-1">
			{code}
		</code>
	);
}