Advertisement
fundaypande

style react native

Mar 25th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const costumMargin = function (margin) {
  2.    return {
  3.      marginBottom: margin,
  4.      marginTop: margin,
  5.      marginLeft: margin,
  6.      marginRight: margin
  7.    };
  8.  };
  9.  const costumPadding = function (top, right, bottom, left) {
  10.     return {
  11.       paddingBottom: bottom,
  12.       paddingTop: top,
  13.       paddingLeft: left,
  14.       paddingRight: right
  15.     };
  16.   };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement