aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/grafici
diff options
context:
space:
mode:
authorSonja Galovic <galovicsonja@gmail.com>2022-04-19 21:58:00 +0200
committerSonja Galovic <galovicsonja@gmail.com>2022-04-19 21:58:00 +0200
commit092ea8c9a0a80857e2da47abc789d48d79af405a (patch)
tree77ae0c6eeb8785ea9008af8e862beffc98b4bd61 /frontend/src/app/grafici
parent923188daa0c90a07c57ecdc6957fcb569b5aa73a (diff)
parent32d776709f2b5df14dbcfd3f610306a899959851 (diff)
Merge branch 'dev' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into dev
Diffstat (limited to 'frontend/src/app/grafici')
-rw-r--r--frontend/src/app/grafici/grafici.component.css0
-rw-r--r--frontend/src/app/grafici/grafici.component.html1
-rw-r--r--frontend/src/app/grafici/grafici.component.spec.ts25
-rw-r--r--frontend/src/app/grafici/grafici.component.ts15
4 files changed, 41 insertions, 0 deletions
diff --git a/frontend/src/app/grafici/grafici.component.css b/frontend/src/app/grafici/grafici.component.css
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/frontend/src/app/grafici/grafici.component.css
diff --git a/frontend/src/app/grafici/grafici.component.html b/frontend/src/app/grafici/grafici.component.html
new file mode 100644
index 00000000..5f987238
--- /dev/null
+++ b/frontend/src/app/grafici/grafici.component.html
@@ -0,0 +1 @@
+<p>grafici works!</p>
diff --git a/frontend/src/app/grafici/grafici.component.spec.ts b/frontend/src/app/grafici/grafici.component.spec.ts
new file mode 100644
index 00000000..9b5ba94d
--- /dev/null
+++ b/frontend/src/app/grafici/grafici.component.spec.ts
@@ -0,0 +1,25 @@
+import { ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { GraficiComponent } from './grafici.component';
+
+describe('GraficiComponent', () => {
+ let component: GraficiComponent;
+ let fixture: ComponentFixture<GraficiComponent>;
+
+ beforeEach(async () => {
+ await TestBed.configureTestingModule({
+ declarations: [ GraficiComponent ]
+ })
+ .compileComponents();
+ });
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(GraficiComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/frontend/src/app/grafici/grafici.component.ts b/frontend/src/app/grafici/grafici.component.ts
new file mode 100644
index 00000000..749b35e2
--- /dev/null
+++ b/frontend/src/app/grafici/grafici.component.ts
@@ -0,0 +1,15 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-grafici',
+ templateUrl: './grafici.component.html',
+ styleUrls: ['./grafici.component.css']
+})
+export class GraficiComponent implements OnInit {
+
+ constructor() { }
+
+ ngOnInit(): void {
+ }
+
+}