import { StudioProjectState } from '../types';

export default function focusTimeline(
  state: StudioProjectState
): StudioProjectState {
  return {
    ...state,
    selection: { ...state.selection, focusedArea: 'timeline' },
  };
}
