ahbeng/NUSMods

View on GitHub
website/src/actions/undoHistory.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { REDO, UNDO } from './constants';

export function undo() {
  return { type: UNDO, payload: null };
}

export function redo() {
  return { type: REDO, payload: null };
}