We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cd19d2 commit 59282ddCopy full SHA for 59282dd
2 files changed
README.md
@@ -82,3 +82,4 @@ Open `http://localhost:8080` in your browser to preview it. Changes will be auto
82
83
Execute the `npm run build` command to compile the CSS and documentation site.
84
This should be done before all releases.
85
+# styleguide-demo
src/components/Onboard.react.js
@@ -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