fix lint issues
This commit is contained in:
parent
3edcbb8420
commit
49e2f3de20
2 changed files with 2 additions and 3 deletions
|
@ -1,6 +1,5 @@
|
|||
import { Fragment } from "react";
|
||||
import { Dialog, Transition } from "@headlessui/react";
|
||||
import { CheckIcon } from "@heroicons/react/outline";
|
||||
import { Cell } from "../grid/Cell";
|
||||
|
||||
type Props = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { Fragment, useState } from "react";
|
||||
import { Fragment } from "react";
|
||||
import { Dialog, Transition } from "@headlessui/react";
|
||||
import { CheckIcon } from "@heroicons/react/outline";
|
||||
import { MiniGrid } from "../mini-grid/MiniGrid";
|
||||
|
@ -62,7 +62,7 @@ export const WinModal = ({ isOpen, handleClose, guesses }: Props) => {
|
|||
You won!
|
||||
</Dialog.Title>
|
||||
<div className="mt-2">
|
||||
<MiniGrid guesses={guesses}/>
|
||||
<MiniGrid guesses={guesses} />
|
||||
<p className="text-sm text-gray-500">Great job.</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Reference in a new issue