import React from 'react' type Props = { bgSrc?: string children?: React.ReactNode } export const VNViewport: React.FC = ({ bgSrc = '/bg.jpg', children }) => { return (
{bgSrc && Background}
{children}