Listing 10-13: Using Styled Components
Example Heading
import styled from 'styled-components';
const Heading = styled.h1`
width: 50%;
margin: 0 auto;
font-size: 2.2em;
color: #333300;`
const ExampleComponent = ()=>{
return(
<Heading>Example Heading</Heading>
);
}
export default ExampleComponent;
Download the examples, report issues, and ask/answer questions in the discussion area by visiting the book's github page. All of the code for the book is also available on codesandbox.io for you to play around with.
ReactJS Foundations is published by John Wiley and Sons, Inc and is available in paperback and eBook.