-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c2e3ef3
commit d3b385c
Showing
28 changed files
with
584 additions
and
539 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
asset-manifest.json,1537734275185,4d64c33c86321b808815d29f698a392fde0540b0acdb595983d23e7a857b50ff | ||
favicon.ico,1537734258789,eae62e993eb980ec8a25058c39d5a51feab118bd2100c4deebb2a9c158ec11f9 | ||
index.html,1537734275183,21b08efd5ad41b53211435fe727535ee988887bbf0cc5f965a673e4ce0007df3 | ||
manifest.json,1537734258792,65d4aa66cd0b8963e88196705111adfccad2e8b80725b6a7a82ca8a9a0de8889 | ||
service-worker.js,1537734275402,ef784fc76f45f03b5e7c8f4dd9c452d8abcb8ea4f915a7803db8c42d2b38f3ec | ||
static/css/main.ee878636.css,1537734275225,a481b4e5acd2cbda9e758ae381b5ea51f793ee895464a12315a16b6feab41244 | ||
static/css/main.ee878636.css.map,1537734275227,f1aaaa5ad0bfae05182dfac256bf75183b4be5372622409c4cb0ae34eb611fef | ||
static/media/profilepic.f7f63b88.png,1537734275226,0a9d7a0037b51e9a5bc3d7d76fe4e36f0808f32960c0430fb86554a734f3b8a5 | ||
static/media/edue_logo.d134030d.png,1537734275225,88e259cb56066267852af071a57debc5ebbed25787ae3620a662432c09bdbc96 | ||
static/js/main.b8e8da95.js,1537734275225,498b131745128fb8429a09c7d24675f27e06414ab27eff3fcb7f4433fbbcc0ac | ||
static/js/main.b8e8da95.js.map,1537734275229,f58d446281199beabea7022ff3413201f73d73e4cda94e38c2825d5755ce956f | ||
favicon.ico,1537736130978,eae62e993eb980ec8a25058c39d5a51feab118bd2100c4deebb2a9c158ec11f9 | ||
asset-manifest.json,1537736147061,b7e1d8645553e6f610e5f29ecd9b270e110b5dae19a1ad655c007238b4470664 | ||
index.html,1537736147061,42695b06af17b706bba6fbeedf16d89b0fbfd6dd8003ed417dba8005275a9459 | ||
manifest.json,1537736130981,65d4aa66cd0b8963e88196705111adfccad2e8b80725b6a7a82ca8a9a0de8889 | ||
service-worker.js,1537736147272,6f00c35904b3088e0ae5984f3f65dacbaf5513b2a8c94ba589a99d59e5b2ad63 | ||
static/css/main.56aebd6d.css,1537736147104,9c79c57a0d226e178f98a8763d79208750d56e095b9c9b3bba77c143413f26a1 | ||
static/media/profilepic.f7f63b88.png,1537736147103,0a9d7a0037b51e9a5bc3d7d76fe4e36f0808f32960c0430fb86554a734f3b8a5 | ||
static/css/main.56aebd6d.css.map,1537736147105,e4623bc0d4360b70edd394f260709bccb3f573c912f1ee92d64f7274723c8fd2 | ||
static/media/edue_logo.d134030d.png,1537736147104,88e259cb56066267852af071a57debc5ebbed25787ae3620a662432c09bdbc96 | ||
static/js/main.2c2ab0ea.js,1537736147104,b1a9367a716a799f7799ddff6021ce1112413b96d0759320a7779e05b9d02456 | ||
static/js/main.2c2ab0ea.js.map,1537736147132,31ff22180cc9dbecdd4e7149f7da36815e2c178e09fd4546df22d3544adfaadb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
// import React | ||
import React, { Component } from 'react'; | ||
import React from 'react'; | ||
// import Footer css | ||
import './Footer.css'; | ||
|
||
class Footer extends Component { | ||
render() { | ||
return ( | ||
<footer id="main-footer"> | ||
EduVents <br /> | ||
Copyright © 2018 | ||
</footer> | ||
); | ||
} | ||
// Footer component | ||
function Footer() { | ||
return ( | ||
<footer id="main-footer"> | ||
EduVents | ||
<br /> | ||
Copyright © 2018 | ||
</footer> | ||
); | ||
} | ||
|
||
export default Footer; | ||
// export Footer component | ||
export default Footer; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default } from './Footer'; | ||
export { default } from './Footer'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
import React, { Component } from 'react' | ||
// import React | ||
import React from 'react'; | ||
// import css | ||
import './Header.css'; | ||
|
||
class Header extends Component { | ||
render() { | ||
return ( | ||
<div className="header"> | ||
<h1 className="app-title">EDU Stuff To Do</h1> | ||
</div> | ||
) | ||
} | ||
function Header() { | ||
return ( | ||
<div className="header"> | ||
<h1 className="app-title">EduVents</h1> | ||
</div> | ||
); | ||
} | ||
|
||
// export Header component | ||
export default Header; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { default } from './Header'; | ||
export { default } from './Header'; |
Oops, something went wrong.