Skip to content

Commit e10d24d

Browse files
author
justintsugranes
committed
created user component
1 parent 739419a commit e10d24d

5 files changed

Lines changed: 6783 additions & 1603 deletions

File tree

components/user.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
function User({ user }) {
2+
return (
3+
<>
4+
<p>{user.name}</p>
5+
<p>{user.email}</p>
6+
</>
7+
)
8+
}
9+
10+
export default User

0 commit comments

Comments
 (0)