wasp/waspc/examples/todoApp/ext/pages/ProfilePage.js

14 lines
196 B
JavaScript

import React, { Component } from 'react'
const profilePage = class Profile extends Component {
render() {
return (
<div>I am Profile page!</div>
)
}
}
export { profilePage }