December 2019
Intermediate to advanced
598 pages
12h 21m
English
It's time to style the HomePage component. Follow these steps to do so:
/** @jsx jsx */import { css, jsx } from '@emotion/core';
export const HomePage = () => ( <div css={css` margin: 50px auto 20px auto; padding: 30px 20px; max-width: 600px; `} > <div> <h2>Unanswered Questions</h2> <button>Ask a question</button> </div> </div>);
<div css={css` margin: 50px auto 20px auto; padding: 30px 20px; max-width: ...Read now
Unlock full access