Skip to content

Commit

Permalink
create Showcase page
Browse files Browse the repository at this point in the history
  • Loading branch information
caspg committed Nov 29, 2017
1 parent b7d89d8 commit 2c3dd05
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions pages/showcase.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from '../src/pages/Showcase';
2 changes: 1 addition & 1 deletion src/components/GlobalStyles/GlobalStyles.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ function GlobalStyles() {
}
h4 {
margin-bottom: 0;
margin-bottom: 0 !important;
}
p {
Expand Down
11 changes: 11 additions & 0 deletions src/pages/Showcase/Showcase.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';

function Showcase(props) {
return (
<div>
<h1>Showcase</h1>
</div>
);
}

export default Showcase;
1 change: 1 addition & 0 deletions src/pages/Showcase/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './Showcase';

0 comments on commit 2c3dd05

Please sign in to comment.