I'm very curious what they mean by "Figma uses Redux, so we have models, actions and reducers". "Models" is not a term that is normally associated with Redux.<p>Note that we now recommend using the "ducks/slice file" pattern for organizing Redux logic for a given feature in a single file:<p><a href="https://redux.js.org/style-guide/style-guide#structure-files-as-feature-folders-or-ducks" rel="nofollow">https://redux.js.org/style-guide/style-guide#structure-files...</a><p>which you basically get for free anyway if you're using our official Redux Toolkit package and the `createSlice` API (which generates action creators based on your reducers):<p><a href="https://redux.js.org/tutorials/fundamentals/part-8-modern-redux" rel="nofollow">https://redux.js.org/tutorials/fundamentals/part-8-modern-re...</a><p>Obviously the Figma codebase has been around for a while so this isn't an immediate solution to their issue, but it definitely simplifies dealing with most Redux logic.