import { splitProps } from "solid-js"; import { TimePane } from "./TimePane"; export function TimeRange (props: any) { const [local, others] = splitProps(props, ['header', 'footer', 'value']); const val1 = () => local.value[0]; const val2 = () => local.value[1]; return <> }