mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-26 18:42:16 +03:00
14 lines
196 B
JavaScript
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 }
|