ng-business-hours
Version:
Angular component allows you to show and manage business hours
50 lines (34 loc) • 1.07 kB
Markdown
# NgBusinessHours
[](https://github.com/debashish2014/local-package-publisher/blob/master/LICENSE)
An Angular component that allows you to show and manage business hours

## Demo
https://ng-business-hours.web.app/
## Installation
To add the business hours to your Angular project:
```
npm install --save ng-business-hours
```
Once installed, add the business hours to your `app.module.ts`:
```typescript
import { NgBusinessHoursModule } from 'ng-business-hours';
...
@NgModule({
...
imports: [
...
NgBusinessHoursModule,
...
],
...
})
export class AppModule {}
```
## Sample usage
And in template file `app.component.html`:
```html
<ng-business-hours [(ngModel)]="businessHours"></ng-business-hours>
```
## License
Licensed under [MIT](http://www.opensource.org/licenses/mit-license.php)
Copyright © 2021 [Alex Kovalenko](https://github.com/alexsds)