Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
HIAST-Clinics
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
almohanad.hafez
HIAST-Clinics
Commits
3a06df2f
Commit
3a06df2f
authored
Aug 19, 2024
by
Almouhannad
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(F) Add layout comps
parent
5f17efcd
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
38 additions
and
1 deletion
+38
-1
app.module.ts
Clinics.Frontend/src/app/app.module.ts
+7
-1
app.component.html
Clinics.Frontend/src/app/components/root/app.component.html
+1
-0
footer.component.css
...d/src/app/components/template/footer/footer.component.css
+0
-0
footer.component.html
.../src/app/components/template/footer/footer.component.html
+0
-0
footer.component.ts
...nd/src/app/components/template/footer/footer.component.ts
+10
-0
header.component.css
...d/src/app/components/template/header/header.component.css
+0
-0
header.component.html
.../src/app/components/template/header/header.component.html
+0
-0
header.component.ts
...nd/src/app/components/template/header/header.component.ts
+10
-0
layout.component.css
...d/src/app/components/template/layout/layout.component.css
+0
-0
layout.component.html
.../src/app/components/template/layout/layout.component.html
+0
-0
layout.component.ts
...nd/src/app/components/template/layout/layout.component.ts
+10
-0
No files found.
Clinics.Frontend/src/app/app.module.ts
View file @
3a06df2f
...
@@ -7,6 +7,9 @@ import { AppRoutingModule } from './app-routing.module';
...
@@ -7,6 +7,9 @@ import { AppRoutingModule } from './app-routing.module';
import
{
AppComponent
}
from
'./components/root/app.component'
;
import
{
AppComponent
}
from
'./components/root/app.component'
;
import
{
BrowserAnimationsModule
}
from
'@angular/platform-browser/animations'
;
import
{
BrowserAnimationsModule
}
from
'@angular/platform-browser/animations'
;
import
{
ToastrModule
}
from
'ngx-toastr'
;
import
{
ToastrModule
}
from
'ngx-toastr'
;
import
{
LayoutComponent
}
from
'./components/template/layout/layout.component'
;
import
{
HeaderComponent
}
from
'./components/template/header/header.component'
;
import
{
FooterComponent
}
from
'./components/template/footer/footer.component'
;
@
NgModule
({
@
NgModule
({
imports
:
[
imports
:
[
...
@@ -26,7 +29,10 @@ import { ToastrModule } from 'ngx-toastr';
...
@@ -26,7 +29,10 @@ import { ToastrModule } from 'ngx-toastr';
// the subset of declarations that should be visible and usable in
// the subset of declarations that should be visible and usable in
// the component templates of other modules
// the component templates of other modules
declarations
:
[
declarations
:
[
AppComponent
AppComponent
,
LayoutComponent
,
HeaderComponent
,
FooterComponent
],
],
// identifies the root component that Angular should
// identifies the root component that Angular should
...
...
Clinics.Frontend/src/app/components/root/app.component.html
View file @
3a06df2f
<app-layout></app-layout>
\ No newline at end of file
Clinics.Frontend/src/app/components/template/footer/footer.component.css
0 → 100644
View file @
3a06df2f
Clinics.Frontend/src/app/components/template/footer/footer.component.html
0 → 100644
View file @
3a06df2f
Clinics.Frontend/src/app/components/template/footer/footer.component.ts
0 → 100644
View file @
3a06df2f
import
{
Component
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-footer'
,
templateUrl
:
'./footer.component.html'
,
styleUrl
:
'./footer.component.css'
})
export
class
FooterComponent
{
}
Clinics.Frontend/src/app/components/template/header/header.component.css
0 → 100644
View file @
3a06df2f
Clinics.Frontend/src/app/components/template/header/header.component.html
0 → 100644
View file @
3a06df2f
Clinics.Frontend/src/app/components/template/header/header.component.ts
0 → 100644
View file @
3a06df2f
import
{
Component
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-header'
,
templateUrl
:
'./header.component.html'
,
styleUrl
:
'./header.component.css'
})
export
class
HeaderComponent
{
}
Clinics.Frontend/src/app/components/template/layout/layout.component.css
0 → 100644
View file @
3a06df2f
Clinics.Frontend/src/app/components/template/layout/layout.component.html
0 → 100644
View file @
3a06df2f
Clinics.Frontend/src/app/components/template/layout/layout.component.ts
0 → 100644
View file @
3a06df2f
import
{
Component
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-layout'
,
templateUrl
:
'./layout.component.html'
,
styleUrl
:
'./layout.component.css'
})
export
class
LayoutComponent
{
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment