React-styling

From bibbleWiki
Revision as of 06:23, 29 June 2020 by Iwiseman (talk | contribs) (Created page with "== Inline Styling == Example of Inline styling <syntaxhighlight lang="javascript"> const styles = { color : 'white', background: 'blue', padding: '0.5rem 1rem', b...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Inline Styling

Example of Inline styling

const styles = {
   color : 'white',
   background: 'blue',
   padding: '0.5rem 1rem',
   borderRadius: '2px' 
}

<button style={styles}>Click me </button>