parent
04e47349dd
commit
b4635b2e4a
3 changed files with 45 additions and 0 deletions
@ -0,0 +1,26 @@ |
||||
import React from 'react'; |
||||
import { WindowState } from './Windows'; |
||||
var _ = require('lodash'); |
||||
|
||||
export interface ManageTagsWindowState extends WindowState { |
||||
} |
||||
|
||||
export enum ManageTagsWindowActions { |
||||
} |
||||
|
||||
export function ManageTagsWindowReducer(state: ManageTagsWindowState, action: any) { |
||||
switch (action.type) { |
||||
default: |
||||
throw new Error("Unimplemented ManageTagsWindow state update.") |
||||
} |
||||
} |
||||
|
||||
export interface IProps { |
||||
state: ManageTagsWindowState, |
||||
dispatch: (action: any) => void, |
||||
mainDispatch: (action: any) => void, |
||||
} |
||||
|
||||
export default function ManageTagsWindow(props: IProps) { |
||||
return <>Hi!</> |
||||
} |
Loading…
Reference in new issue