Astro Web Components React Wrapper
npm install @astrouxds/reactnpm i @astrouxds/react
First, import the css into either your index.js, app.js, or any CSS file you would like.
import '@astrouxds/astro-web-components/dist/astro-web-components/astro-web-components.css'
Next, Import any desired Astro components the same way you would any other React component.
import { RuxProgress } from '@astrouxds/react
You can now use astro-components as regular React components.
``
import React from 'react';
const MyComp = () => {
return (
export default MyComp;
`
Docs for all components can be found at our Astro Stencil Storybook, and in our web-components package
- CSS custom properties for our react-wrapped components are undefined out of the box, thus the necessity for the CSS import.
- For using checkbox, push button, or switch onRuxchange events, you need to check for the checked prop:
```
onRuxchange={(e: React.ChangeEvent
setSwitchVal(e.target.checked ? e.target.value : "")
}
/>