Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. import React from "react";
  2. import TextComponents from "./TextComponents";
  3. const GreetingText = TextComponents({ font: "Oswald-Regular", fontSize: 18, color: COLORS.lightBlack, fontWeight: "bold", lineHeight: 25 });
  4.  
  5. export function HelloWorld(){
  6. return(
  7. <GreetingText>Hello World!</GreetingText>
  8. );
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement