Skip to main content

Declarative ↔ (Paradigm) to express logic w/o explicit Control Flow via Abstraction

aka Declaratively

References

  1. relayDeclarative React Framework to colocate & mutate data via GraphQL

  2. react-router-domReact Lib for Routing Primitives to Client Routing & Server Side Render in Declarative Composable way

  3. <Navigate>React Router FC to Declaratively trigger navigate

  4. <RequireAuth> ↔ custom FC Wrapper to Declaratively control Protected Route via useAuth() & <Navigate\> from react-router-dom

  5. @apollo/client ↔ JS state management lib to manage local/remote data via Declarative GraphQL Data Fetch

  6. ReactMinimalist Lib to build App UI via Declarative Component Based Architecture

  7. Storyexport default Object to Declaratively render FC snapshot with specific key state to dev/test/doc

<code>export</code>  default {
title "Button",
component: Button
}

<code>export</code> const ButtonRed = () => <Button label="Press me" backgroundColor="red" /\>
  1. ?Declarative JS Operator to assign first Truthy Operand else fallback

  2. <Outlet\>React Router FC to Declaratively render Child Component within Nest Route