Skip to content

A library that allows you to integrate a review UI in your Angular application

License

Notifications You must be signed in to change notification settings

Cimpress-MCP/angular-review-ui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Library for Angular 2 - Review UI

This is a basic setup for Angular 2 which allows you to embed a review component in your application. Sample in below website uses [email protected].


Installation

You can install angular-review-ui using npm:

npm install angular-review-ui --save

Import

// In your App's module:
import { ReviewModule, ReviewComponent } from 'angular-review-ui';

imports: [
    ReviewModule
],
declarations: [
    ReviewComponent
]

Systemjs

// In systemjs.config.js
map: {
	  'angular-review-ui': 'node_modules/angular-review-ui'
},
packages: {
	'angular-review-ui': {
      main: './index.js',
			defaultExtension: 'js'
		}
}

Simple Review Component

Import ReviewComponent in your app. Then you can use review component:

<review-component></review-component>

Troubleshooting

Please follow this guidelines when reporting bugs and feature requests:

  1. Please always write steps to reproduce the error. That way we can focus on fixing the bug, not scratching our heads trying to reproduce it.

Thanks for understanding!

About

A library that allows you to integrate a review UI in your Angular application

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published