/** @jsx jsx */ import { Global, css, jsx } from '@emotion/core' type MainProps = { children: React.ReactNode } export default function Main({ children }: MainProps) { return (

Org Viewer

{children}
) }