MCPcopy Create free account
hub / github.com/untitleduico/react / Content

Function Content

components/application/empty-state/empty-state.tsx:85–98  ·  view source on GitHub ↗
(props: ComponentPropsWithRef<"div">)

Source from the content-addressed store, hash-verified

83};
84
85const Content = (props: ComponentPropsWithRef<"div">) => {
86 const { size } = useContext(RootContext);
87
88 return (
89 <main
90 {...props}
91 className={cx(
92 "z-10 mb-6 flex w-full max-w-88 flex-col items-center justify-center gap-1",
93 (size === "md" || size === "lg") && "mb-8 gap-2",
94 props.className,
95 )}
96 />
97 );
98};
99
100const Footer = (props: ComponentPropsWithRef<"div">) => {
101 return <footer {...props} className={cx("z-10 flex gap-3", props.className)} />;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected