ConvertFast UI is a Free and Open Source project under MIT LICENSE.
Documentation
Installation

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": {
      "@/*": ["./*"]
    }
  }
}