AG-2750 Pre-release framework sweep

This commit is contained in:
Sean Landsman
2019-03-19 16:30:35 +00:00
parent 940cc314aa
commit e55950227f
4 changed files with 42 additions and 157 deletions

View File

@@ -10,7 +10,7 @@ export default function SimpleReduxHookExample() {
<Context.Provider value={{store, dispatch}}>
<div>
<h1>Simple Example using Hooks (with useContext and useReducer)</h1>
<button onClick={() => dispatch({type: "SET_ROW_DATA"})}>Populate Row Data</button>
<button onClick={() => dispatch({type: "SET_ROW_DATA"})} className="btn btn-primary">Populate Row Data</button>
<GridComponent/>
</div>
</Context.Provider>