<details class="acc-cc" name="acc-cc">
<summary>const installCommand = "npm i";</summary>
<p>Installs the package and resolves all peer dependencies. Adds an entry to package.json.</p>
</details>
<details class="acc-cc" name="acc-cc" open>
<summary>const importStatement = "import x from 'lib';";</summary>
<p>ES module import. Tree-shakable so unused exports won't bloat the bundle.</p>
</details>
<details class="acc-cc" name="acc-cc">
<summary>const renderHook = "useEffect";</summary>
<p>Side-effects after paint. Cleanup runs on unmount or before the next effect fires.</p>
</details>