import { Badge } from "@medusajs/ui" type CellProps = { code: string } type HeaderProps = { text: string } export const CodeCell = ({ code }: CellProps) => { return (
{code}
) } export const CodeHeader = ({ text }: HeaderProps) => { return (
{text}
) }