Skip to content
Permalink
b26de2279c
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
26 lines (21 sloc) 496 Bytes
import React, { Component } from 'react';
import './App.css';
import Header from './components/header/Header';
import Quiz from './components/quiz/Quiz';
class App extends Component {
constructor(props) {
super(props);
this.state = {
welcome: "Josh"
}
}
render() {
return (
<div style={{ background: '#EBEBEB', padding: '30px' }}>
<Header message="Welcome to QuizMaster" />
<Quiz quizNum='2' />
</div>
);
}
}
export default App;