12 lines
255 B
JavaScript
12 lines
255 B
JavaScript
import StorageArray from 'ember-local-storage/local/array';
|
|
|
|
const Storage = StorageArray.extend();
|
|
|
|
// Uncomment if you would like to set initialState
|
|
// Storage.reopenClass({
|
|
// initialState() {
|
|
// return [];
|
|
// }
|
|
// });
|
|
|
|
export default Storage; |