import type { JSX } from 'react'; import { ServerProps } from './types.js'; const appSpout = (app: JSX.Element) =>

(props: P) => Promise.resolve({ ...props, app }); export default appSpout;