Type missing renameCellAction payload

pull/3446/head
Jared Scheib 2018-05-16 13:56:17 -07:00
parent c2532d06b6
commit b4d020f708
1 changed files with 3 additions and 1 deletions

View File

@ -40,7 +40,9 @@ export const changeCellType = (cellType: CellType): ChangeCellTypeAction => ({
interface RenameCellAction {
type: 'RENAME_CELL'
payload: {}
payload: {
cellName: string
}
}
export const renameCell = (cellName: string): RenameCellAction => ({
type: 'RENAME_CELL',