Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
Codecrew
/
Moya
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
30
Merge Requests
2
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 278d9b8f
authored
Apr 02, 2018
by
Tuukka Kivilahti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
forgot frontpage
1 parent
7fc72cd8
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
60 additions
and
0 deletions
code/moya-angular/src/app/components/frontpage/frontpage.component.css
code/moya-angular/src/app/components/frontpage/frontpage.component.html
code/moya-angular/src/app/components/frontpage/frontpage.component.spec.ts
code/moya-angular/src/app/components/frontpage/frontpage.component.ts
code/moya-angular/src/app/modules/viplist/viplist.module.ts
code/moya-angular/src/app/components/frontpage/frontpage.component.css
0 → 100644
View file @
278d9b8
File mode changed
code/moya-angular/src/app/components/frontpage/frontpage.component.html
0 → 100644
View file @
278d9b8
<p>
frontpage works!
</p>
code/moya-angular/src/app/components/frontpage/frontpage.component.spec.ts
0 → 100644
View file @
278d9b8
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
FrontpageComponent
}
from
'./frontpage.component'
;
describe
(
'FrontpageComponent'
,
()
=>
{
let
component
:
FrontpageComponent
;
let
fixture
:
ComponentFixture
<
FrontpageComponent
>
;
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
declarations
:
[
FrontpageComponent
]
})
.
compileComponents
();
}));
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
FrontpageComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'should create'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
code/moya-angular/src/app/components/frontpage/frontpage.component.ts
0 → 100644
View file @
278d9b8
import
{
Component
,
OnInit
}
from
'@angular/core'
;
@
Component
({
selector
:
'moya-frontpage'
,
templateUrl
:
'./frontpage.component.html'
,
styleUrls
:
[
'./frontpage.component.css'
]
})
export
class
FrontpageComponent
implements
OnInit
{
constructor
()
{
}
ngOnInit
()
{
}
}
code/moya-angular/src/app/modules/viplist/viplist.module.ts
0 → 100644
View file @
278d9b8
import
{
NgModule
}
from
'@angular/core'
;
import
{
CommonModule
}
from
'@angular/common'
;
import
{
MatTableModule
}
from
"@angular/material"
;
import
{
InfoViplistPageComponent
}
from
"./info/info-viplist-page.component"
;
import
{
ViplistRoutingModule
}
from
"./viplist-routing.module"
;
import
{
TranslateModule
}
from
"@ngx-translate/core"
;
@
NgModule
({
imports
:
[
ViplistRoutingModule
,
CommonModule
,
MatTableModule
,
TranslateModule
],
declarations
:
[
InfoViplistPageComponent
]
})
export
class
ViplistModule
{
}
Write
Preview
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment