Fix prettier

This commit is contained in:
Jorik Schellekens
2020-06-24 16:20:56 +01:00
parent 7e380385b4
commit 317d60b552
4 changed files with 13 additions and 13 deletions
+6 -6
View File
@@ -20,12 +20,12 @@ import "./App.scss";
import SingleColumn from "./layouts/SingleColumn";
const App: React.FC = () => {
return (
<SingleColumn>
<div className="topSpacer" />
<div className="bottomSpacer" />
</SingleColumn>
);
return (
<SingleColumn>
<div className="topSpacer" />
<div className="bottomSpacer" />
</SingleColumn>
);
};
export default App;
+4 -4
View File
@@ -4,8 +4,8 @@ import "./index.scss";
import App from "./App";
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById("root")
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById("root")
);
+2 -2
View File
@@ -19,11 +19,11 @@ import React from "react";
import "./SingleColumn.scss";
interface IProps {
children?: React.ReactNode;
children?: React.ReactNode;
}
const SingleColumn: React.FC<IProps> = (props: IProps) => {
return <div className="singleColumnLayout">{props.children}</div>;
return <div className="singleColumnLayout">{props.children}</div>;
};
export default SingleColumn;