Skip to content

Commit

Permalink
add tabs
Browse files Browse the repository at this point in the history
remove boilerplate
  • Loading branch information
paulmojicatech committed Nov 25, 2023
1 parent 4713d47 commit 88533e5
Show file tree
Hide file tree
Showing 22 changed files with 75 additions and 343 deletions.
4 changes: 2 additions & 2 deletions apps/disney-planner/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
"error",
{
"type": "attribute",
"prefix": "app",
"prefix": "disney",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"prefix": "disney",
"style": "kebab-case"
}
],
Expand Down
2 changes: 1 addition & 1 deletion apps/disney-planner/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"projectType": "application",
"prefix": "disney",
"sourceRoot": "apps/disney-planner/src",
"tags": [],
"tags": [],
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:browser",
Expand Down
11 changes: 11 additions & 0 deletions apps/disney-planner/src/app/account/account.page.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Component } from '@angular/core';

@Component({
selector: 'disney-account',
standalone: true,
template: `
<div>Account</div>
`,
styles: ``
})
export class AccountPage {}
16 changes: 0 additions & 16 deletions apps/disney-planner/src/app/app.module.ts

This file was deleted.

1 change: 0 additions & 1 deletion apps/disney-planner/src/app/app.routes.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { NgModule } from '@angular/core';
import {Routes} from '@angular/router';

export const appRoutes: Routes = [
Expand Down

This file was deleted.

This file was deleted.

13 changes: 13 additions & 0 deletions apps/disney-planner/src/app/home/home.page.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';

@Component({
selector: 'disney-home',
template: `
<div>Home Page</div>
`,
standalone: true,
imports: [CommonModule],
styles: ``
})
export class HomePage {}
12 changes: 12 additions & 0 deletions apps/disney-planner/src/app/map/map.page.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';

@Component({
selector: 'disney-map',
standalone: true,
imports: [CommonModule],
template: `
<div>Map</div>
`
})
export class MapPage {}
11 changes: 11 additions & 0 deletions apps/disney-planner/src/app/search/search.page.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Component } from '@angular/core';

@Component({
selector: 'disney-search',
template: `
<div>Search</div>
`,
styles: ``,
standalone: true
})
export class SearchPage {}
26 changes: 0 additions & 26 deletions apps/disney-planner/src/app/tab1/tab1.page.spec.ts

This file was deleted.

43 changes: 0 additions & 43 deletions apps/disney-planner/src/app/tab1/tab1.page.ts

This file was deleted.

9 changes: 0 additions & 9 deletions apps/disney-planner/src/app/tab1/tab1.routes.ts

This file was deleted.

26 changes: 0 additions & 26 deletions apps/disney-planner/src/app/tab2/tab2.page.spec.ts

This file was deleted.

42 changes: 0 additions & 42 deletions apps/disney-planner/src/app/tab2/tab2.page.ts

This file was deleted.

9 changes: 0 additions & 9 deletions apps/disney-planner/src/app/tab2/tab2.routes.ts

This file was deleted.

26 changes: 0 additions & 26 deletions apps/disney-planner/src/app/tab3/tab3.page.spec.ts

This file was deleted.

Loading

0 comments on commit 88533e5

Please sign in to comment.