Dabbled in some more boostrap, created introduction componented, changed nav bar

This commit is contained in:
Giovani
2019-04-09 19:58:46 -04:00
parent b43f3910f5
commit 1c52171b03
16 changed files with 104 additions and 73 deletions

View File

@@ -0,0 +1,23 @@
import React, {Component} from 'react';
class Footer extends Component {
render() {
return (
<div className="container-fluid mt-5">
<div className="row">
<div className="col">
One
</div>
<div className="col">
Two
</div>
<div className="col">
Three
</div>
</div>
</div>
);
}
}
export default Footer;