Skip to content

Commit

Permalink
Design PlatformSidebarComponent
Browse files Browse the repository at this point in the history
References: #10
  • Loading branch information
Atif-Mahmud committed Nov 13, 2018
1 parent a47e46c commit 6f628b5
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion src/containers/Platforms.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,23 @@ function PlatformsList(props) {
return(listItems);
}

function PlatformSidebar(props) {
return(
<div className="sidebar pure-u-1 pure-u-md-1-4">
<div className="header">
<h1 className="brand-title">SESoc Candidate Platforms</h1>
<h1 className="brand-tagline">Winter 2019 Elections</h1>
</div>
</div>
)
}

class Platforms extends Component {
render() {
return (
<PlatformsList platforms={platformData}/>
<div id="layout" className="pure-g">
<PlatformSidebar/>
</div>
);
}
}
Expand Down

0 comments on commit 6f628b5

Please sign in to comment.