diff --git a/src/core/client/stream/components/App.tsx b/src/core/client/stream/components/App.tsx index cb084e4e5..28713f4e5 100644 --- a/src/core/client/stream/components/App.tsx +++ b/src/core/client/stream/components/App.tsx @@ -13,9 +13,11 @@ import CommentsPaneContainer from "../tabs/comments/containers/CommentsPaneConta import ProfileQuery from "../tabs/profile/queries/ProfileQuery"; import * as styles from "./App.css"; +type TabValue = "COMMENTS" | "PROFILE" | "%future added value"; + export interface AppProps { - activeTab: "COMMENTS" | "PROFILE" | "%future added value"; - onTabClick: (tab: string) => void; + activeTab: TabValue; + onTabClick: (tab: TabValue) => void; } const App: StatelessComponent = props => {