Skip to content
Snippets Groups Projects
Commit 46e9c4eb authored by Lorenz Detterbeck's avatar Lorenz Detterbeck
Browse files

Add content creation component

parent 3baf2e17
No related merge requests found
<p>
content-creation works!
</p>
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { ContentCreationComponent } from './content-creation.component';
describe('ContentCreationComponent', () => {
let component: ContentCreationComponent;
let fixture: ComponentFixture<ContentCreationComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ ContentCreationComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ContentCreationComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-content-creation',
templateUrl: './content-creation.component.html',
styleUrls: ['./content-creation.component.scss']
})
export class ContentCreationComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment