MCPcopy Create free account
hub / github.com/LuisMPS/build-ui / Section

Function Section

examples/tutorial/src/components/ui/section/Section.js:10–20  ·  view source on GitHub ↗
({
    className,
    ...props
})

Source from the content-addressed store, hash-verified

8})
9
10const Section = ({
11 className,
12 ...props
13}) => {
14 const classes = useStyle();
15 const classAll = `
16 ${className || ''}
17 ${classes.section}
18 `;
19 return <div {...props} className = {classAll} />
20}
21
22export default Section;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected