import * as React from 'react'; import * as ReactDOM from 'react-dom'; const Page = () => { return ( <>

Viewfinder Examples

Look at how the layouts are coded in the Git repository.

); }; const root = document.createElement('div') ReactDOM.render(, root); document.body.appendChild(root);