@misa198/react-slots
TypeScript icon, indicating that this package has built-in type declarations

1.0.6 • Public • Published

react-slots

  • A simple react component that uses slots to render children

Installation

# npm
npm i @misa198/react-slots

# yarn
yarn add @misa198/react-slots

Usage


// Parent.tsx

import { Slot, useSlots } from '@misa198/react-slots';
import { PropsWithChildren } from 'react';

export default ({ children }: PropsWithChildren) => {
const slots = useSlots(children);

  return (
    <div>
      <Slot {...slots.slot1} />
      <Slot {...slots.slot2} />
      <Slot {...slots.slot3} />
    </div>
  );
};
// App.tsx

import { SlotWrapper } from '@misa198/react-slots';
import { useState } from 'react';

export default () => (
  <Parent>
    <SlotWrapper name="slot1">
      <div>Slot 1</div>
    </SlotWrapper>
    <SlotWrapper name="slot2">
      <div>Slot 2</div>
    </SlotWrapper>
    <SlotWrapper name="slot3">
      <div>Slot 3</div>
    </SlotWrapper>
  </Parent>
);

Server Side Rendering

SlotWrapper components must be children of the component when rendered. With the above example:

  • If App.tsx is the server side component and Parent.tsx is the client side component, the Slot components will not be rendered.

  • If both App.tsx and Parent.tsx are server side components or client side components, the Slot components will be rendered.

Package Sidebar

Install

npm i @misa198/react-slots

Weekly Downloads

2

Version

1.0.6

License

MIT

Unpacked Size

13.8 kB

Total Files

42

Last publish

Collaborators

  • misa198