Pearson Content Program Patterns-Alignment Tool
npm install c1-alignment-tool#Alignment tool
The Content Program Patterns library.
npm install --save c1-alignment-tool
yarn add c1-alignment-tool
js
import { AlignmentTool } from 'c1-alignment-tool';
render() {
return (
)
}
`
also to reduce file size, you can require individual components:
`js
import AlignmentTool from 'c1-alignment-tool/dist/AlignmentTool';
render() {
return (
)
}
`
###ES5
`js
const c1pattern = require('c1-alignment-tool');
const AlignmentTool = c1pattern.AlignmentTool;
render() {
return (
)
}
``