Skip to content

Instantly share code, notes, and snippets.

@gaeng2y
Created August 4, 2024 11:05
Show Gist options
  • Select an option

  • Save gaeng2y/55afbec6deaee2ed190cc7221be1dfb9 to your computer and use it in GitHub Desktop.

Select an option

Save gaeng2y/55afbec6deaee2ed190cc7221be1dfb9 to your computer and use it in GitHub Desktop.
func todoReducer(state: [String], action: Action) -> [String] {
var newState = state
switch action {
case .addTodoItem(let text):
newState.append(text)
case .removeTodoItem(let index):
newState.remove(at: index)
}
return newState
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment