MCPcopy Create free account
hub / github.com/Linen-dev/linen.dev / SplitLayout

Function SplitLayout

apps/web/ui/SplitLayout/index.tsx:9–27  ·  view source on GitHub ↗
({ left, right }: Props)

Source from the content-addressed store, hash-verified

7}
8
9export default function SplitLayout({ left, right }: Props) {
10 return (
11 <>
12 <header className={styles.header}>
13 <a href="/">
14 <img width={108} height={24} src="/images/logo/white/linen.svg" />
15 </a>
16 </header>
17 <div className={styles.grid}>
18 <div className={styles.left}>{left}</div>
19 <div className={styles.right}>{right}</div>
20 </div>
21 <div id="portal"></div>
22 <div id="modal-portal"></div>
23 <div id="tooltip-portal"></div>
24 <div id="preview-portal"></div>
25 </>
26 );
27}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected