Rename PageArea to MainArea

This commit is contained in:
André Wahlberg
2020-11-20 17:51:59 +01:00
parent 5f12f1ad5a
commit ae8ef6fc57
2 changed files with 5 additions and 4 deletions

View File

@ -0,0 +1,15 @@
import React, { Component } from 'react';
import './css/MainArea.css';
class MainArea extends Component {
render() {
return (
<main>
<div id="topSection" />
</main>
);
}
}
export default MainArea;