@beyerleinf/ngx-cfb
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

ngx-cfb

A simple to use component library for Angular.

Table of Contents

  1. Links
  2. Installation & basic usage
  3. Full Documentation

Links

Code Documentation Changelog

Installation & basic usage

You can install ngx-cfb via npm:

npm install --save @beyerleinf/ngx-cfb

Import the Module somewhere:

import { ConnectFourBoardModule } from '@beyerleinf/ngx-cfb';

@NgModule({
  ...
  imports: [ConnectFourBoardModule, ...]
  ...
})

Add the component:

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})
export class AppComponent {
  board = [[1, 0, 2], [0, 0, 0]];
}
<cfb-board [board]="board"></cfb-board>

Full Documentation

You can check out the complete (auto-generated) documentation here

Readme

Keywords

Package Sidebar

Install

npm i @beyerleinf/ngx-cfb

Weekly Downloads

1

Version

1.1.0

License

MIT

Unpacked Size

229 kB

Total Files

35

Last publish

Collaborators

  • beyerleinf