import { type JSX } from 'solid-js/jsx-runtime'; export function Code(props: { children: JSX.Element; className?: string; }): JSX.Element { return {props.children}; }