Skip to content

Commit

Permalink
feat(AboutView): add About view
Browse files Browse the repository at this point in the history
  • Loading branch information
kiki-le-singe committed Dec 2, 2016
1 parent fcd4eaa commit a1e5a0e
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/common/views/AboutView/AboutView.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from 'react'
import Helmet from 'react-helmet'
import classNames from 'classnames'

import titleStyles from 'common/styles/local/title.scss'
import styles from './AboutView.scss'

export default function AboutView() {
return (
<div className="view view__about">
<Helmet title="About" />

<h2 className={classNames(styles.title, titleStyles.h2)}>About</h2>
</div>
)
}
3 changes: 3 additions & 0 deletions src/common/views/AboutView/AboutView.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.title {
color: #ff0000;
}
3 changes: 3 additions & 0 deletions src/common/views/AboutView/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import AboutView from './AboutView'

export default AboutView

0 comments on commit a1e5a0e

Please sign in to comment.