How does "qwik-react" convert a React component to a Qwik component? Does it simply make it compatible with Qwik or does it transform it into a true Qwik component? Is there any advantage for developers to build Qwik components and libraries?
For example, if I want to use Chakra UI as my UI kit, according to the Qwik website documentation, should I create a file named "chakra-ui-qwik" and export each component I want to use in the following manner:
import { qwikify$ } from '@builder.io/qwik-react';
import { Box, Container, Divider, Link, Text } from "@chakra-ui/react";
export const QBox = qwikify$(Box);
export const QContainer = qwikify$(Container);
export const QDivider = qwikify$(Divider);
export const QLink = qwikify$(Link);
export const QText = qwikify$(Text);
So there is no need for developers to develop @chakra-ui/qwik library and @chakra-ui/react is enough?