({ kind = 'home', children })
| 15 | const GlowingBackdropLayout: FC< |
| 16 | PropsWithChildren<GlowingBackdropLayoutProps> |
| 17 | > = ({ kind = 'home', children }) => ( |
| 18 | <> |
| 19 | <WithNavBar /> |
| 20 | |
| 21 | <div className={styles.centeredLayout}> |
| 22 | <GlowingBackdrop /> |
| 23 | |
| 24 | <main |
| 25 | id="main" |
| 26 | tabIndex={-1} |
| 27 | className={classNames({ |
| 28 | [styles.homeLayout]: kind === 'home', |
| 29 | })} |
| 30 | > |
| 31 | {children} |
| 32 | </main> |
| 33 | </div> |
| 34 | |
| 35 | <WithFooter /> |
| 36 | </> |
| 37 | ); |
| 38 | |
| 39 | export default GlowingBackdropLayout; |
nothing calls this directly
no outgoing calls
no test coverage detected