mirror of
https://github.com/dzeiocom/markblog.git
synced 2025-04-22 10:52:12 +00:00
17 lines
309 B
TypeScript
17 lines
309 B
TypeScript
import React from 'react'
|
|
|
|
/* eslint-disable @typescript-eslint/no-empty-interface */
|
|
interface Props {}
|
|
|
|
interface States {}
|
|
/* eslint-enable @typescript-eslint/no-empty-interface */
|
|
|
|
export default class Name extends React.Component<Props, States> {
|
|
|
|
public render() {
|
|
return (
|
|
<span></span>
|
|
)
|
|
}
|
|
}
|