Guest User

Untitled

a guest
Jan 4th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. | pages
  2. | - About
  3. | - - index.js
  4. | - - styles.css
  5. | - Home
  6. | - - index.js
  7. | - - styles.css
  8. | index.js
  9. | index.css
  10.  
  11. <div className="my-component">
  12. <span className="my-class">Hello</span>
  13. </div>
  14.  
  15. const styles= {
  16. myComponent: {
  17. fontSize: 200,
  18. },
  19. };
  20. const myComponent = () => (
  21. <span style={styles.myComponent}>Hello</span>
  22. );
Add Comment
Please, Sign In to add comment