Skip to content

Instantly share code, notes, and snippets.

@GrandSchtroumpf
GrandSchtroumpf / app.component.ts
Last active March 5, 2020 14:15
ng-form-factory simple example
import { Component } from '@angular/core';
import { FormGroupSchema, createForms } from 'ng-form-factory';
import { MatTextSchema } from './text-form/text-form.component';
interface Person {
firstName: string;
lastName: string;
}
const schema: FormGroupSchema<Person> = {
@niespodd
niespodd / package.json
Last active May 8, 2023 09:07
Making web3/bitcore-lib work with Angular 6-11 and >=11
{...
"scripts": {
"postinstall": "node patch.js",
...
}
}