Giter VIP home page Giter VIP logo

awesome-react-render-props's Introduction

me . blog . tweets . dank memes . instagram . sponsor

Hi, I'm Jared! ๐Ÿ‘‹

I'm the VP of AI at โ–ฒVercel and the creator of v0.dev. I joined Vercel after they acquired my frontend build system startup Turborepo in late 2021.

Prior to Vercel and Turborepo, I ran a software development and design studio in New York City called The Palmer Group. I'm mostly known for my open source projects in the React ecosystem such as Formik and TSDX, which are trusted by millions of developers all over the world.

I angel invest in early-stage startups that I'm passionate about. If I'm not working or tweeting, I'm likely skiing on the east coast, going to concerts, or hanging with friends.

awesome-react-render-props's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

awesome-react-render-props's Issues

What the best way render props?

Hi all,

I have two examples with render props and don't know What is the best way? Why? Different?

Example 1:

// Layout.jsx
const Layout = ({ children, aside }) => (
  <div>
      <header>My header</header>
      {aside}
      <main>
          {children}
      </main>
  </div>
);

// user.js
import Aside from './components/Layout';

const User = () => (
  <Layout aside={<Aside />}>
      My user page
  </Layout>
);

Example 2:

// Layout.jsx
const Layout = ({ children, aside: Aside }) => (
  <div>
      <header>My header</header>
      <Aside />
      <main>
          {children}
      </main>
  </div>
);

// user.js
import Aside from './components/Layout';

const User = () => (
  <Layout aside={Aside }>
      My user page
  </Layout>
);

Thank in advance!

Sort alphabetically?

Looking through the list, the order libraries are listed seems a bit random.
Would it make sense to go through the list and sort them by name?

I'm no longer watching this repo

Hi friends. Just letting you know I'm trying to slim down my notifications, so I'm no longer going to help maintain this. Sorry.

Consider breaking down "Misc" into new categories

Looking through the "Misc" category I see opportunities for new categories.

State

  • react-value: An easy easy way to wrap controlled components that provide value and onChange props with state.
  • react-redux-local: Simple local reducer with middleware/sagas/redux-dev-tools support.
  • redux-render: Ergonomic Redux bindings for React using render props
  • unstated: Share state between components with the same statefu
  • react-gizmo: UI Finite State Machine for React

Alternatively the above could be merged into "Data".

Composition

  • react-powerplug: Renderless Pluggable State Containers
  • react-adopt: ๐Ÿ˜Ž Compose render props components like a pro.
  • react-composer: Compose render prop components
  • @danwang/retainer: Compose render prop components by lifting computation into containers

Media

  • react-power-picture: Progressively load an image srcset for maximum responsiveness and performance
  • react-with-async-fonts: Module for dealing with custom web fonts
  • react-progressive-image: React component for progressive image loading

Timing

  • react-loads: A simple React component to handle loading state
  • react-sentinel: Abstracts away requestAnimationFrame, allowing you to poll anything for props
  • react-pro-metronome: React component for creating your own metronome
  • react-t-minus: A React component to handle simple countdowns.

This would then result in misc only containing the following:

  • react-pledge: Declarative way to track promise lifecycle states using "render props" ๐Ÿ•ถ
  • react-device-battery: ๐Ÿ”‹ Notifies your React App of the device battery status
  • react-geolocation: Declarative geolocation in React
  • react-albus: React component library for building declarative multi-step flows (wizards).
  • @tedconf/react-show-more: A Unopinionated component to handle showing more items
  • react-treefold: A renderless tree component for your hierarchical React views
  • react-google-calendar-events-list: React component which retrieves events from a google calendar.
  • react-google-maps-loader: Simple loader to use google maps services
  • react-render-fam: Lit components for conditional rendering in React

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.