mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-26 18:42:16 +03:00
68155711e8
* Implemented FE ACL & updated the examples. * PR fixes, fixed tests.
8 lines
140 B
JavaScript
8 lines
140 B
JavaScript
import React from 'react'
|
|
|
|
export const ProfilePage = ({ user }) => {
|
|
return (
|
|
<div>I am Profile page for { user.email }!</div>
|
|
)
|
|
}
|