From 3f98c205374678a9798180562cd172ccb17767ea Mon Sep 17 00:00:00 2001 From: Hugo Bernier Date: Thu, 28 May 2020 22:38:39 -0400 Subject: [PATCH] Update IWordGameProps.ts --- .../src/webparts/wordGame/components/IWordGameProps.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/samples/react-word-game/src/webparts/wordGame/components/IWordGameProps.ts b/samples/react-word-game/src/webparts/wordGame/components/IWordGameProps.ts index 9bb44b7ac..415ffc45f 100644 --- a/samples/react-word-game/src/webparts/wordGame/components/IWordGameProps.ts +++ b/samples/react-word-game/src/webparts/wordGame/components/IWordGameProps.ts @@ -1,6 +1,6 @@ -import { WordGameListItem } from "./WordService"; -import { GameState } from "./WordGame"; -import { WebPartContext } from "@microsoft/sp-webpart-base"; +import { WordGameListItem } from './WordService'; +import { GameState } from './WordGame'; +import { WebPartContext } from '@microsoft/sp-webpart-base'; export interface IWordGameProps { description: string; @@ -19,5 +19,4 @@ export interface IWordGameState { lblMessage: string; highScores: WordGameListItem[]; mobileMode: boolean; - }