<!-- Headers start with h5 ##### -->

##### Global Script

The Dropdown Component uses JavaScript for toggling and accessibility.

```html
<script src="{{ this.package.name }}/{{ this.global.dist }}/{{ this.global.entry.scripts }}"></script>

<script>
  var Standard = new {{ this.global.entry.name }}();

  Standard.dropdown();
</script>
```

##### Module Import

For module imports, import the Dropdown module from the source.

```javascript
import Dropdown from '{{ this.package.name }}/{{ this.global.src }}/components/dropdown/dropdown';

new Dropdown();
```
