import React from 'react'; import useStyles from 'uwf/useStyles'; import s from './Page.css'; interface PropTypes { title: string; html: string; } const Page = ({ title, html }: PropTypes) => { useStyles(s); return (