December 2019
Intermediate to advanced
598 pages
12h 21m
English
Let's go through the following steps to implement the QuestionList component:
import { FC } from 'react';/** @jsx jsx */import { css, jsx } from '@emotion/core';import { gray5, accent2 } from './Styles';import { QuestionData } from './QuestionsData';
Notice that we have imported FC from React.
interface Props { data: QuestionData[];Read now
Unlock full access