mirror of
https://github.com/dzeiocom/markblog.git
synced 2025-04-22 02:42:14 +00:00
16 lines
207 B
TypeScript
16 lines
207 B
TypeScript
import React from 'react'
|
|
|
|
interface Props {
|
|
}
|
|
|
|
export default class Name extends React.Component<Props, {}> {
|
|
constructor(props: Props) {
|
|
super(props)
|
|
}
|
|
render() {
|
|
return (
|
|
<span></span>
|
|
)
|
|
}
|
|
}
|