](https://www.creative-tim.com/product/argon-dashboard)[
](https://www.creative-tim.com/product/argon-dashboard-react)[
](https://www.creative-tim.com/product/argon-dashboard-angular)[
](https://www.creative-tim.com/product/argon-dashboard-nodejs)[
](https://www.creative-tim.com/product/argon-dashboard-laravel)[
](https://github.com/creativetimofficial/argon-dashboard/tree/sketch)
-
-
-
-| HTML | React | Angular |
-| --- | --- | --- |
-| [](https://www.creative-tim.com/product/argon-dashboard?ref=ada-github-readme) | [](https://www.creative-tim.com/product/argon-dashboard-react?ref=ada-github-readme) | [](https://www.creative-tim.com/product/argon-dashboard-angular?ref=ada-github-readme)
-
-| NodeJS | Laravel |
-| --- | --- |
-| [](https://www.creative-tim.com/product/argon-dashboard-nodejs?ref=ada-github-readme) | [](https://www.creative-tim.com/product/argon-dashboard-laravel?ref=ada-github-readme) |
-
-## Demo
-
-| Dashboard Page | Icons Page | User Profile Page | Tables Page | Login Page | Register Page |
-| --- | --- | --- | --- | --- | --- |
-| [](https://demos.creative-tim.com/argon-dashboard-angular/dashboard?ref=ada-github-readme) | [](https://demos.creative-tim.com/argon-dashboard-angular/icons?ref=ada-github-readme) | [](https://demos.creative-tim.com/argon-dashboard-angular/user?ref=ada-github-readme) | [](https://demos.creative-tim.com/argon-dashboard-angular/tables?ref=ada-github-readme) | [](https://demos.creative-tim.com/argon-dashboard-angular/login?ref=ada-github-readme) | [](https://demos.creative-tim.com/argon-dashboard-angular/register?ref=ada-github-readme)
-
-[View More](https://demos.creative-tim.com/argon-dashboard-angular/dashboard)
-
-
-## Quick start
-
-- [Download from Github](https://github.com/creativetimofficial/argon-dashboard-angular/archive/master.zip).
-- [Download from Creative Tim](https://www.creative-tim.com/product/argon-dashboard-angular?ref=ada-github-readme).
-- Clone the repo: `git clone https://github.com/creativetimofficial/argon-dashboard-angular.git`.
-
-
-## Documentation
-The documentation for the Argon Dashboard Angular is hosted at our [website](https://demos.creative-tim.com/argon-dashboard-angular/documentation/tutorial?ref=ada-github-readme).
-
-
-## File Structure
-Within the download you'll find the following directories and files:
-
-```
-argon-dashboard-angular
-├── CHANGELOG.md
-├── README.md
-├── angular.json
-├── e2e
-├── package.json
-├── src
-│ ├── app
-│ │ ├── app.component.html
-│ │ ├── app.component.scss
-│ │ ├── app.component.spec.ts
-│ │ ├── app.component.ts
-│ │ ├── app.module.ts
-│ │ ├── app.routing.ts
-│ │ ├── components
-│ │ │ ├── components.module.spec.ts
-│ │ │ ├── components.module.ts
-│ │ │ ├── footer
-│ │ │ │ ├── footer.component.html
-│ │ │ │ ├── footer.component.scss
-│ │ │ │ ├── footer.component.spec.ts
-│ │ │ │ └── footer.component.ts
-│ │ │ ├── navbar
-│ │ │ │ ├── navbar.component.html
-│ │ │ │ ├── navbar.component.scss
-│ │ │ │ ├── navbar.component.spec.ts
-│ │ │ │ └── navbar.component.ts
-│ │ │ └── sidebar
-│ │ │ ├── sidebar.component.html
-│ │ │ ├── sidebar.component.scss
-│ │ │ ├── sidebar.component.spec.ts
-│ │ │ └── sidebar.component.ts
-│ │ ├── layouts
-│ │ │ ├── admin-layout
-│ │ │ │ ├── admin-layout.component.html
-│ │ │ │ ├── admin-layout.component.scss
-│ │ │ │ ├── admin-layout.component.spec.ts
-│ │ │ │ ├── admin-layout.component.ts
-│ │ │ │ ├── admin-layout.module.ts
-│ │ │ │ └── admin-layout.routing.ts
-│ │ │ └── auth-layout
-│ │ │ ├── auth-layout.component.html
-│ │ │ ├── auth-layout.component.scss
-│ │ │ ├── auth-layout.component.spec.ts
-│ │ │ ├── auth-layout.component.ts
-│ │ │ ├── auth-layout.module.ts
-│ │ │ └── auth-layout.routing.ts
-│ │ ├── pages
-│ │ │ ├── dashboard
-│ │ │ │ ├── dashboard.component.html
-│ │ │ │ ├── dashboard.component.scss
-│ │ │ │ ├── dashboard.component.spec.ts
-│ │ │ │ └── dashboard.component.ts
-│ │ │ ├── icons
-│ │ │ │ ├── icons.component.html
-│ │ │ │ ├── icons.component.scss
-│ │ │ │ ├── icons.component.spec.ts
-│ │ │ │ └── icons.component.ts
-│ │ │ ├── login
-│ │ │ │ ├── login.component.html
-│ │ │ │ ├── login.component.scss
-│ │ │ │ ├── login.component.spec.ts
-│ │ │ │ └── login.component.ts
-│ │ │ ├── maps
-│ │ │ │ ├── maps.component.html
-│ │ │ │ ├── maps.component.scss
-│ │ │ │ ├── maps.component.spec.ts
-│ │ │ │ └── maps.component.ts
-│ │ │ ├── register
-│ │ │ │ ├── register.component.html
-│ │ │ │ ├── register.component.scss
-│ │ │ │ ├── register.component.spec.ts
-│ │ │ │ └── register.component.ts
-│ │ │ ├── tables
-│ │ │ │ ├── tables.component.html
-│ │ │ │ ├── tables.component.scss
-│ │ │ │ ├── tables.component.spec.ts
-│ │ │ │ └── tables.component.ts
-│ │ │ └── user-profile
-│ │ │ ├── user-profile.component.html
-│ │ │ ├── user-profile.component.scss
-│ │ │ ├── user-profile.component.spec.ts
-│ │ │ └── user-profile.component.ts
-│ │ └── variables
-│ │ └── charts.ts
-│ ├── assets
-│ │ ├── fonts
-│ │ ├── img
-│ │ ├── scss
-│ │ │ ├── angular-differences
-│ │ │ ├── argon.scss
-│ │ │ ├── core
-│ │ │ └── custom
-│ │ └── vendor
-│ ├── browserslist
-│ ├── environments
-│ ├── favicon.ico
-│ ├── index.html
-│ ├── main.ts
-│ ├── polyfills.ts
-│ ├── styles.scss
-│ ├── test.ts
-│ ├── tsconfig.app.json
-│ ├── tsconfig.spec.json
-│ └── tslint.json
-├── tsconfig.json
-└── tslint.json
-```
-
-
-## Browser Support
-
-At present, we officially aim to support the last two versions of the following browsers:
-
-
-
-
-
-## Resources
-- Demo:
+
+
- facture works!
diff --git a/src/app/pages/facture/facture.component.spec.ts b/src/app/pages/facture/facture.component.spec.ts new file mode 100644 index 00000000..63223030 --- /dev/null +++ b/src/app/pages/facture/facture.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { FactureComponent } from './facture.component'; + +describe('FactureComponent', () => { + let component: FactureComponent; + let fixture: ComponentFixtureintervention-curatif works!
diff --git a/src/app/pages/interventionCuratif/intervention-curatif.component.spec.ts b/src/app/pages/interventionCuratif/intervention-curatif.component.spec.ts new file mode 100644 index 00000000..9fe9cf28 --- /dev/null +++ b/src/app/pages/interventionCuratif/intervention-curatif.component.spec.ts @@ -0,0 +1,25 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing'; + +import { InterventionCuratifComponent } from './intervention-curatif.component'; + +describe('InterventionCuratifComponent', () => { + let component: InterventionCuratifComponent; + let fixture: ComponentFixtureUse these awesome forms to login or create new account in your project for free.
+- 3.48% - Since last month -
-- 3.48% - Since last week -
-- 1.10% - Since yesterday -
-- 12% - Since last month -
-| Project | -Budget | -Status | -Users | -Completion | -- |
|---|---|---|---|---|---|
|
-
-
-
-
-
-
- Argon Design System
-
- |
- - $2,500 USD - | -- - pending - - | -- - | -
-
- 60%
-
-
-
-
-
-
- |
-
-
-
-
-
-
-
- |
-
|
-
-
-
-
-
-
- Angular Now UI Kit PRO
-
- |
- - $1,800 USD - | -- - completed - - | -- - | -
-
- 100%
-
-
-
-
-
-
- |
-
-
-
-
-
-
-
- |
-
|
-
-
-
-
-
-
- Black Dashboard
-
- |
- - $3,150 USD - | -- - delayed - - | -- - | -
-
- 72%
-
-
-
-
-
-
- |
-
-
-
-
-
-
-
- |
-
|
-
-
-
-
-
-
- React Material Dashboard
-
- |
- - $4,400 USD - | -- - on schedule - - | -- - | -
-
- 90%
-
-
-
-
-
-
- |
-
-
-
-
-
-
-
- |
-
|
-
-
-
-
-
-
- Vue Paper UI Kit PRO
-
- |
- - $2,200 USD - | -- - completed - - | -- - | -
-
- 100%
-
-
-
-
-
-
- |
-
-
-
-
-
-
-
- |
-