Skip to content

Commit

Permalink
Add header and subheaer to page
Browse files Browse the repository at this point in the history
  • Loading branch information
EricaHD committed Mar 14, 2024
1 parent 43ac019 commit 75dc058
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dist/bundle.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
import React, { Component } from "react";
import Header from "./Header";
import Typography from '@mui/material/Typography';

class App extends Component {
render() {
return (
<div>
<Typography variant="h3" component="div" sx={{ textAlign: 'center' }}>
Retirement Contribution Calculator
</Typography>
<Typography variant="h6" component="div" sx={{ textAlign: 'center' }}>
with a 2% per-paycheck match from your company
</Typography>
<Header />
</div>
);
Expand Down

0 comments on commit 75dc058

Please sign in to comment.