Installation
Code generated by convertfast-ui is based on shadcn-ui, all code are React + TypeScript, so make sure your project is set up with TypeScript and React.
A import alias is required to use the generated code, you can add the following to your tsconfig.json
:
{
"compilerOptions": {
"paths": {
"@/*": ["./*"]
}
}
}