MCPcopy Create free account
hub / github.com/9d8dev/directory / Container

Function Container

components/craft.tsx:88–94  ·  view source on GitHub ↗
({ children, className, id }: ContainerProps)

Source from the content-addressed store, hash-verified

86};
87
88const Container = ({ children, className, id }: ContainerProps) => {
89 return (
90 <div className={cn("mx-auto max-w-5xl", "p-6 sm:p-8", className)} id={id}>
91 {children}
92 </div>
93 );
94};
95
96// Article Component
97type ArticleProps = {

Callers

nothing calls this directly

Calls 1

cnFunction · 0.70

Tested by

no test coverage detected