Skip to content
Permalink
92ad8c0498
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
17 lines (16 sloc) 441 Bytes
import React, { Component } from "react";
import "./scss/App.scss";
import SearchBar from "./components/searchBar";
import ParticipantContainer from "./components/participantContainer";
class App extends Component {
render() {
return (
<div className="App">
Hello World!
<SearchBar />
<ParticipantContainer />
</div>
);
}
}
export default App;