A Jac client-side application with React support.
EmailBuddy/
├── jac.toml # Project configuration
├── main.jac # Main application entry
├── components/ # Reusable components
│ └── Button.cl.jac # Example Jac component
├── assets/ # Static assets (images, fonts, etc.)
└── build/ # Build output (generated)
Start the development server:
jac start main.jacCreate Jac components in components/ as .cl.jac files and import them:
cl import from .components.Button { Button }Add npm packages with the --cl flag:
jac add --cl react-router-dom