Skip to content

Commit

Permalink
feat(AboutView.cssnext): add About view cssnext
Browse files Browse the repository at this point in the history
  • Loading branch information
kiki-le-singe committed Dec 2, 2016
1 parent a1e5a0e commit 6965cd8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/common/views/AboutView/AboutView.cssnext.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.css'
import styles from './AboutView.css'

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

<h2 className={classNames(styles.title, titleStyles.h2)}>About</h2>
</div>
)
}

0 comments on commit 6965cd8

Please sign in to comment.