summaryrefslogtreecommitdiff
path: root/src/components/main_content_layout.tsx
blob: 0b55d6ae190f0013b728f3f8e97552f29d222a9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import "./stylesheets/shared.css"
import { Props } from "./layout";

export default function MainContentLayout(props: Props ) {
  return(
    <>
      <div className="main-view">
        { props.children }
      </div>
    </>
  );
}