MCPcopy Create free account
hub / github.com/developerway/example-react-project / Layout

Function Layout

packages/core/layout/index.tsx:12–22  ·  view source on GitHub ↗
({ topBar, sidebar, page }: LayoutProps)

Source from the content-addressed store, hash-verified

10};
11
12export const Layout = ({ topBar, sidebar, page }: LayoutProps) => {
13 return (
14 <div css={appCss}>
15 {topBar}
16 <div css={mainContentCss}>
17 {sidebar}
18 <div css={pageCss}>{page}</div>
19 </div>
20 </div>
21 );
22};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected