arrow-left
All pages
gitbookPowered by GitBook
1 of 1

Loading...

@atomico/react

Wrapper to use webcomponents in React

hashtag
¿What is @atomico/react?

It is a Wrapper to eliminate React's own problems when rendering webcomponents, with @atomico/react you can:

  1. Using your webcomponent's type declarations in React/Preact

  2. Synchronize the events of your webcomponents with React

  3. Composition from React using children and slots

  4. Use SSR of your webcomponents in React/Preact based environments for example Next.js

hashtag
When to use @atomico/react?

We recommend using Atomico/react when looking to support React or Preact from your webcomponents built with Atomico.

circle-check

We also support vue with @atomico/vue

hashtag
@atomico/react vs other solutions?

With Atomico/react it's really easy to use, example:

hashtag
Example

hashtag
@atomico/exports

We invite you to meet to automate the generation of wrappers for your webcomponents

@atomico/exports
@atomico/exportschevron-right
import { auto } from "@atomico/react";
import { MyComponent as _MyComponent } from "./my-component.js";

export const MyComponent = auto( _MyComponent );
import * as React from 'react';
import { createComponent } from '@lit-labs/react';
import { MyComponent as _MyComponent } from './my-component.js';

export const MyComponent = createComponent({
  tagName: 'my-component', //⚠️ requires the tagName
  elementClass: _MyComponent, 
  react: React, //⚠️ requires react module
  events: { //⚠️ requires events
    onactivate: 'activate',
    onchange: 'change',
  },
});
import { auto } from "@atomico/react";
import { HTMLMyComponent } from "./my-component.js";

export const MyComponent = auto( HTMLMyComponent );
GitHub - atomicojs/reactGitHubchevron-right
Logo