Code - abhishekdev/hopcar GitHub Wiki

Code Structure

The HTML, CSS and JS have a single entry points at the root of the application, other aspects are implemented as individual modules.

src
├── components            -- contains UI components (SearchForm, Fields etc.)
├── routes                -- Application pages (Home, Search, Errors etc.)
├── styles                -- Core styles for components (single import point: index.less)
|   └── index.less
├── themes                -- Themed styles for components (single import point: index.less)
|   └── index.less
├── utils
|   └── hotwire           -- Hotwire specific logic for validation, fetch and parsing
├── index.html
├── index.less
└── index.jsx