import { JSX } from "solid-js"; import { useClassList } from "../utils/useProps"; type BothSideProps = { classList?: any, class?: any, children?: any, style?: any, } export function BothSide (props: BothSideProps): JSX.Element { const classList = () => useClassList(props, 'cm-both-side'); return
{props.children}
}