mirror of
https://github.com/dzeiocom/markblog.git
synced 2025-07-29 07:59:50 +00:00
Fixed lint errors :D
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
@ -1,14 +1,16 @@
|
||||
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)
|
||||
}
|
||||
render() {
|
||||
public render() {
|
||||
return (
|
||||
<span></span>
|
||||
)
|
||||
|
Reference in New Issue
Block a user