1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
---
id: basic-tutorial
title: Basic Tutorial: Intro
sidebar_label: Basic Tutorial: Intro
hide_title: true
---
# Basics
Don't be fooled by all the fancy talk about reducers, middleware, store enhancers—Redux is incredibly simple. If you've ever built a Flux application, you will feel right at home. If you're new to Flux, it's easy too!
In this guide, we'll walk through the process of creating a simple Todo app.
- [Actions](Actions.md)
- [Reducers](Reducers.md)
- [Store](Store.md)
- [Data Flow](DataFlow.md)
- [Usage with React](UsageWithReact.md)
- [Example: Todo List](ExampleTodoList.md)
|