* Define a layout component. This function returns the passed input as-is. * * You can use this function to help the TypeScript compiler infer the types * of `props` that your component receives. For example: * * ```ts * import { define } from "../utils.ts"; * * export defaul
(render: AnyComponent<PageProps<unknown, State>>)
| 152 | * ``` |
| 153 | */ |
| 154 | layout(render: AnyComponent<PageProps<unknown, State>>): typeof render; |
| 155 | } |
| 156 | |
| 157 | /** |
no outgoing calls
no test coverage detected