markblog/components/default.tsx
Florian Bouillon fee40613f1
Fixed linting 😃
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-06 21:18:11 +01:00

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>
)
}
}