### Default Exports
* Used to export **1 thing**:
* `export default "blah"`
* In the file you are importing from:
* `import variabl_name from 'path_of_file'`
---
### Named Exports
* used to export multiple things
```js
export const add = (a, b) => a + b;
export const multiply = (a, b) => a*b;
export const ID = 23;
// in retrieving file
import {add, mulitply} from './views/searchView';
// you can alias the imported names
import {add as a, mulitply as m} from './views/searchView';
// get everything
import * as searchView from './views/searchView';
```