Source: https://www.academiedugout.fr/recettes/gateau-a-la-poudre-damandes_6919_4
- Poudre d'amande: 150gr
- Oeuf: 3
- Sucre cassonade: 80gr
- Beurre: 75gr + qq pour le moude
Source: https://www.academiedugout.fr/recettes/gateau-a-la-poudre-damandes_6919_4
| module.exports = { | |
| root: true, | |
| env: { | |
| node: true | |
| }, | |
| extends: [ | |
| 'prettier', | |
| 'plugin:@typescript-eslint/recommended', | |
| 'prettier/@typescript-eslint', | |
| 'plugin:prettier/recommended', |
| # Author: Zameer Ansari | |
| # You should look at the following URL's in order to grasp a solid understanding | |
| # of Nginx configuration files in order to fully unleash the power of Nginx. | |
| # http://wiki.nginx.org/Pitfalls | |
| # http://wiki.nginx.org/QuickStart | |
| # http://wiki.nginx.org/Configuration | |
| # | |
| # Generally, you will want to move this file somewhere, and start with a clean | |
| # file but keep this around for reference. Or just disable in sites-enabled. | |
| # |
| import {Action, ActionCreator, Dispatch} from 'redux'; | |
| import {ThunkAction} from 'redux-thunk'; | |
| // Redux action | |
| const reduxAction: ActionCreator<Action> = (text: string) => { | |
| return { | |
| type: SET_TEXT, | |
| text | |
| }; | |
| }; |
| package-lock.json |