Update README.md

This commit is contained in:
Zakary Timson 2019-05-09 14:26:46 -04:00 committed by GitHub
parent 730b35cdfd
commit a0215a7793
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,7 +5,7 @@ A Javascript library that adds property decorators to sync a class property with
### Quick Setup ### Quick Setup
1. Install with: `npm install --save webstorage-decorators crypto-js` 1. Install with: `npm install --save webstorage-decorators crypto-js`
2. Add the decorator to your property and you are done! 2. Add the decorator to your property and you are done!
``` ```javascript
import {LocalStorage, SessionStorage} from 'webstorage-decorators'; import {LocalStorage, SessionStorage} from 'webstorage-decorators';
export class SomeComponent { export class SomeComponent {
@ -28,4 +28,3 @@ A Javascript library that adds property decorators to sync a class property with
} }
} }
``` ```