Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #11 from beardlessman/patch-1
Browse files Browse the repository at this point in the history
fix importing components in app.tsx
  • Loading branch information
Orta committed Jan 15, 2020
2 parents 48e2972 + 90c962d commit 91733f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions TicTacToe_TS/src/app.tsx
@@ -1,8 +1,8 @@
import * as React from "react";
import { render } from "react-dom";
import { Board } from "./Board";
import { RestartBtn } from "./RestartBtn";
import { GameStateBar } from "./GameStateBar";
import { Board } from "./board";
import { RestartBtn } from "./restartBtn";
import { GameStateBar } from "./gameStateBar";
import { GameState } from "./constants";

class App extends React.Component<{}, {}> {
Expand Down

0 comments on commit 91733f6

Please sign in to comment.