wasp/waspc/examples/todoApp/ext/pages/ProfilePage.js
Matija Sosic 68155711e8
Implemented FE ACL & updated the examples. (#165)
* Implemented FE ACL & updated the examples.

* PR fixes, fixed tests.
2021-02-01 16:32:07 +01:00

8 lines
140 B
JavaScript

import React from 'react'
export const ProfilePage = ({ user }) => {
return (
<div>I am Profile page for { user.email }!</div>
)
}