mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-26 18:42:16 +03:00
16 lines
268 B
JavaScript
16 lines
268 B
JavaScript
import React, { Component } from 'react'
|
|
|
|
import { Link } from "react-router-dom"
|
|
|
|
export default class About extends Component {
|
|
|
|
render() {
|
|
return (
|
|
<>
|
|
<div>I am About page!</div>
|
|
<Link to="/">Go to dashboard</Link>
|
|
</>
|
|
)
|
|
}
|
|
}
|