mirror of
https://github.com/harivansh-afk/betterNAS.git
synced 2026-04-17 15:04:51 +00:00
init (#5)
This commit is contained in:
parent
4f174ec3a8
commit
b68151035a
81 changed files with 6263 additions and 545 deletions
11
packages/ui/src/code.tsx
Normal file
11
packages/ui/src/code.tsx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { type JSX } from "react";
|
||||
|
||||
export function Code({
|
||||
children,
|
||||
className,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
className?: string;
|
||||
}): JSX.Element {
|
||||
return <code className={className}>{children}</code>;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue