# Item Component A small reusable UI component that shows an image on the left and three text areas on the right. ## Files - `item-component.js` — ES module that exports `createItemComponent()` (default export). - `index.html` — example usage (the project includes a demo where multiple items are laid out in a responsive grid). ## Import Use as an ES module in a browser environment: ```html ``` ## Options - `imgSrc` (string) — image URL. If omitted, an empty `` is created. - `imgAlt` (string) — image alt text. - `text1` (string) — first text area (displayed as title by default). - `text2` (string) — second text area (subtitle). - `text3` (string) — third text area (description). - `editable` (boolean) — when `true` the text areas are rendered as editable `