Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
// components/index.js — barrel file export { Button } from "./Button.js"; export { Input } from "./Input.js"; export { Modal } from "./Modal.js"; export { default as Card } from "./Card.js"; // Re-export with rename export { Button as Btn } from "./Button.js"; // app.js — clean single import import { Button, Input, Modal } from "./components/index.js";
Result
Open