mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
save
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
<div class="container">
|
||||
<div class="calendar">
|
||||
<div class="month">
|
||||
<i class="fas fa-angle-left prev"></i>
|
||||
<div class="date">
|
||||
<h1>Janeiro de 2020</h1>
|
||||
<p>Segunda-feira, 7 de Stembro</p>
|
||||
</div>
|
||||
<i class="fas fa-angle-right next"></i>
|
||||
</div>
|
||||
<div class="weekdays">
|
||||
<div>D</div>
|
||||
<div>S</div>
|
||||
<div>T</div>
|
||||
<div>Q</div>
|
||||
<div>Q</div>
|
||||
<div>S</div>
|
||||
<div>S</div>
|
||||
</div>
|
||||
<div class="days"></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { CalendarComponent } from './calendar.component';
|
||||
|
||||
describe('CalendarComponent', () => {
|
||||
let component: CalendarComponent;
|
||||
let fixture: ComponentFixture<CalendarComponent>;
|
||||
|
||||
beforeEach(async(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ CalendarComponent ],
|
||||
imports: [IonicModule.forRoot()]
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(CalendarComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
}));
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
@@ -0,0 +1,14 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-calendar',
|
||||
templateUrl: './calendar.component.html',
|
||||
styleUrls: ['./calendar.component.scss'],
|
||||
})
|
||||
export class CalendarComponent implements OnInit {
|
||||
|
||||
constructor() { }
|
||||
|
||||
ngOnInit() {}
|
||||
|
||||
}
|
||||
@@ -1,8 +1,7 @@
|
||||
|
||||
/*
|
||||
import { SlidesComponent } from './slides/slides.component';
|
||||
import { CustomHeaderComponent } from './custom-header/custom-header.component';
|
||||
import { EventComponent } from './event/event.component'; */
|
||||
|
||||
import { CalendarComponent } from './calendar/calendar.component';
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user