summaryrefslogtreecommitdiff
path: root/frontend/src/components/PlayerList.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/PlayerList.jsx')
-rw-r--r--frontend/src/components/PlayerList.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/PlayerList.jsx b/frontend/src/components/PlayerList.jsx
index 8584502b..64377476 100644
--- a/frontend/src/components/PlayerList.jsx
+++ b/frontend/src/components/PlayerList.jsx
@@ -5,7 +5,7 @@ import React from 'react';
import { Flex } from 'reflexbox';
import { Player } from '../models/players';
-export type PlayerListProps = {
+type PlayerListProps = {
players: List<Player>;
};
bgstack15