In the style of your component, or a global style file
App.css
@import "@root-axis/design-tokens"
In the jsx file you want to import the components
The component must be in a client component
App.tsx
'use client'import{ useState }from'react'exportdefaultfunctionApp(){// This ensures you are in a browser environmentif(typeofwindow!=="undefined"){import("@root-axis/design-system");}const[count, setCount]=useState(0);<ra-buttononClick={()=>setCount((count)=> count +1)}> count is {count}</ra-button>}