Answer the question
In order to leave comments, you need to log in
From which UI kits for React can you take one component at a time and not pull the entire library code with you?
Hello),
here is an example: radix-ui.com , in this library, each component is installed as a dependency:
npm install @radix-ui/react-progress
import * as Progress from '@radix-ui/react-progress';
export default () => (
<Progress.Root>
<Progress.Indicator />
</Progress.Root>
);
import { Form, Input, Button, Checkbox } from 'antd';
// ...
<Grid />
, <Flex />
etc., you understand) Thank you :) Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question