Guest User

Untitled

a guest
Sep 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // Example
  2.  
  3. /* stylesheet definition */
  4. export const redStyle = { color: 'red' };
  5.  
  6.  
  7.  
  8. /* component */
  9. import { redStyle } from './colorStyle';
  10.  
  11. const style = StyleSheet.create({
  12. ...redStyle,
  13. });
  14.  
  15. export const Widget = ({ text }) => <Text style={style.color}>{text}></Text>;
Add Comment
Please, Sign In to add comment