Skip to content
Permalink
1414c5e7d7
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
18 lines (16 sloc) 330 Bytes
import React, { Component } from 'react'
import User from './User'
class App extends Component {
render() {
return (
<div className="App">
<h1>App has its own file!</h1>
<User />
<User />
<User />
<User />
</div>
)
}
}
export default App;