mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 12:19:10 +00:00
9 lines
195 B
JavaScript
9 lines
195 B
JavaScript
// @flow
|
|
import * as React from 'react'
|
|
import type { PageProps } from '../../types'
|
|
|
|
export default class LandingTest extends React.Component<PageProps> {
|
|
render () {
|
|
return <div />
|
|
}
|
|
}
|