MCPcopy Create free account
hub / github.com/TanStack/devtools / Section

Function Section

packages/devtools-ui/src/components/section.tsx:5–15  ·  view source on GitHub ↗
({
  children,
  ...rest
}: JSX.IntrinsicElements['section'])

Source from the content-addressed store, hash-verified

3import type { JSX } from 'solid-js/jsx-runtime'
4
5export const Section = ({
6 children,
7 ...rest
8}: JSX.IntrinsicElements['section']) => {
9 const styles = createStyles()
10 return (
11 <section class={clsx(styles().section.main, rest.class)} {...rest}>
12 {children}
13 </section>
14 )
15}
16
17export const SectionTitle = ({
18 children,

Callers

nothing calls this directly

Calls 1

createStylesFunction · 0.90

Tested by

no test coverage detected