import React, { PureComponent } from 'react' import Question from './Question.js' import styles from './Questions.module.css' class Questions extends PureComponent { render () { const { subjs } = this.props return (
{subjs.map((subj) => { return (
{subj.Name}
{ subj.Questions.map((question) => { return ( ) })}
) })}
) } } export default Questions