Skip to content

Commit 59282dd

Browse files
committed
first commit
1 parent 6cd19d2 commit 59282dd

2 files changed

Lines changed: 24 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,4 @@ Open `http://localhost:8080` in your browser to preview it. Changes will be auto
8282

8383
Execute the `npm run build` command to compile the CSS and documentation site.
8484
This should be done before all releases.
85+
# styleguide-demo

src/components/Onboard.react.js

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import React from 'react';
2+
import classNames from 'classnames';
3+
4+
export default function Onboard(props) {
5+
const classes = [
6+
'padding-m',
7+
'bg-blue',
8+
'c-white',
9+
'fontSize-s',
10+
];
11+
12+
return (
13+
<div
14+
className={classes.join(' ')}>
15+
<span>Onboarding message goes here</span>
16+
</div>
17+
);
18+
}
19+
20+
Onboard.propTypes = {
21+
className: React.PropTypes.string,
22+
callback: React.PropTypes.func,
23+
};

0 commit comments

Comments
 (0)