Creating User Interface
Learn to create the UI.
We'll cover the following...
To give you an idea of how a basic UI can connect to Redux, we will use a bit of jQuery magic.
Note: this example is very simple and should never be used in a real application.
Let’s store our current UI in ui.js
. The jQuery UI
will create a simple view of the current recipes in the store:
import $ from 'jquery';
import store from
...