import { createStyles, makeStyles } from "@material-ui/core/styles";
import { Paper, PaperProps, Typography, TypographyProps } from "@material-ui/core";
import classNames from "classnames";
import React from "react";
const useSectionStyles = makeStyles(theme => createStyles({
root: {
padding: theme.spacing(2),
}
}))
export const Section = ({ children, ...props }: PaperProps) => {
const classes = useSectionStyles();
return
{ children }
}
export const Label = ({ children }: TypographyProps) => {
return { children }
}