import type { JSX } from 'solid-js/jsx-runtime' import { Switch, Match } from 'solid-js' type Props = { level?: number children: JSX.Element } const CommentWrapper = (props: Props) => { return ( ) } export default CommentWrapper