Guest User

Untitled

a guest
Oct 23rd, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. import { render, Text, Artboard } from 'react-sketchapp';
  2.  
  3. const App = props => (
  4. <Artboard>
  5. <Text style={{ fontFamily: 'Comic Sans MS', color: 'hotPink' }}>
  6. { props.message }
  7. </Text>
  8. </Artboard>
  9. );
  10.  
  11. export default (context) => {
  12. render(<App message="OKKY Conference 2017" />, context);
  13. }
Add Comment
Please, Sign In to add comment