Fix linting

This commit is contained in:
Jorik Schellekens
2020-06-24 15:20:30 +01:00
parent 8b07e64a9b
commit cece18abb2
5 changed files with 244 additions and 113 deletions
+3 -1
View File
@@ -22,6 +22,8 @@ interface IProps {
children?: React.ReactNode;
}
export default (props: IProps) => {
const SingleColumn: React.FC<IProps> = (props: IProps) => {
return <div className="singleColumnLayout">{props.children}</div>;
};
export default SingleColumn;