From c03e68041e0f444e18a895058afbdf0d68759517 Mon Sep 17 00:00:00 2001 From: Joffrey BION Date: Sun, 21 May 2017 20:20:45 +0200 Subject: Update prettier config and reformat Here's the discussion summary: - single quote, because that's what I'm used to in the JS world - trailing comma, to avoid unnecessary git changes - print-width 120, because 120 still doesn't require to scroll horizontally, and vertical space is precious --- frontend/src/layouts/LobbyLayout.js | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) (limited to 'frontend/src/layouts/LobbyLayout.js') diff --git a/frontend/src/layouts/LobbyLayout.js b/frontend/src/layouts/LobbyLayout.js index 84d3998f..effdfebb 100644 --- a/frontend/src/layouts/LobbyLayout.js +++ b/frontend/src/layouts/LobbyLayout.js @@ -1,23 +1,18 @@ -import React from "react"; -import { Banner } from "rebass"; -import logo from "./logo-7-wonders.png"; -import ReduxToastr from "react-redux-toastr"; +import React from 'react'; +import { Banner } from 'rebass'; +import logo from './logo-7-wonders.png'; +import ReduxToastr from 'react-redux-toastr'; export default props => (
Seven Wonders Logo {props.children} - +
); -- cgit