Skip to content
Permalink
bff530520d
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 (15 sloc) 390 Bytes
import React, { Component } from 'react'
import './User.css'
class User extends Component {
render() {
return (
<div className="User">
<h1>First Name</h1>
<h2>Last Name</h2>
<p>Hey I'm blah blah and this is my mini profile</p>
<a href="http://www.google.com">My LinkedIn</a>
</div>
)
}
}
export default User;