Page MenuHomec4science

rdf-editor-module.module.ts
No OneTemporary

File Metadata

Created
Sat, Oct 12, 00:19

rdf-editor-module.module.ts

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import {MatCardModule} from '@angular/material/card';
import {MatInputModule} from '@angular/material/input';
import {MatFormFieldModule} from '@angular/material/form-field';
import {FormsModule, ReactiveFormsModule} from '@angular/forms'
import { RdfRsourceEditorComponentComponent } from './rdf-resource-editor-component/rdf-rsource-editor-component.component';
import { NodeEditorComponentComponent } from './rdf-resource-editor-component/nodeVal-editor-component/nodeVal-editor-component.component';
import { RdfEditorInputComponentComponent } from './rdf-resource-editor-component/rdf-editor-input-component/rdf-editor-input-component.component';
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
import { RdfEditorStatementComponentComponent } from './rdf-resource-editor-component/rdf-editor-statement-component/rdf-editor-statement-component.component';
import { RdfEditorTransactionComponentComponent } from './rdf-editor-transaction-component/rdf-editor-transaction-component.component';
import {MatButtonModule} from "@angular/material/button";
@NgModule({
declarations: [
RdfRsourceEditorComponentComponent,
NodeEditorComponentComponent,
RdfEditorInputComponentComponent,
RdfEditorStatementComponentComponent,
RdfEditorTransactionComponentComponent
],
imports: [
BrowserAnimationsModule,
CommonModule,
FormsModule,
MatButtonModule,
MatFormFieldModule,
MatCardModule,
MatInputModule,
ReactiveFormsModule
],
exports: [
RdfRsourceEditorComponentComponent,
NodeEditorComponentComponent,
RdfEditorTransactionComponentComponent
]
})
export class RdfEditorModuleModule { }

Event Timeline