mirror of
https://github.com/dzeiocom/markblog.git
synced 2025-04-23 03:12:15 +00:00
19 lines
317 B
TypeScript
19 lines
317 B
TypeScript
import React from 'react'
|
|
|
|
/* tslint:disable:no-empty-interface */
|
|
interface Props {}
|
|
|
|
interface States {}
|
|
/* tslint:enable:no-empty-interface */
|
|
|
|
export default class Name extends React.Component<Props, States> {
|
|
constructor(props: Props) {
|
|
super(props)
|
|
}
|
|
public render() {
|
|
return (
|
|
<span></span>
|
|
)
|
|
}
|
|
}
|