Skip to content

Instantly share code, notes, and snippets.

@cagcak
Created September 23, 2022 07:17
Show Gist options
  • Save cagcak/3c673acede690da432a60d00a19e21a6 to your computer and use it in GitHub Desktop.
Save cagcak/3c673acede690da432a60d00a19e21a6 to your computer and use it in GitHub Desktop.
.
├── actions
│ ├── cinematic-scene.actions.spec.ts
│ ├── cinematic-scene.actions.ts
│ └── index.ts
├── components
│ ├── cinematic-scene
│ │ ├── cinematic-scene.component.spec.ts
│ │ └── cinematic-scene.component.ts
│ ├── organisms
│ │ ├── organisms-cinematic-scene
│ │ │ ├── organisms-cinematic-scene.component.html
│ │ │ ├── organisms-cinematic-scene.component.spec.ts
│ │ │ └── organisms-cinematic-scene.component.ts
│ │ └── index.ts
│ └── index.ts
├── consts
│ ├── cinematic-scene-form.consts.ts
│ └── index.ts
├── models
│ ├── cinematic-scene-form.ts
│ ├── cinematic-scene.ts
│ └── index.ts
├── resolvers
│ ├── cinematic-scene.resolver.spec.ts
│ ├── cinematic-scene.resolver.ts
│ └── index.ts
├── states
│ ├── cinematic-scene.state.ts
│ └── index.ts
├── cinematic-scene.module.ts
├── cinematic-scene.routing.module.spec.ts
└── cinematic-scene.routing.module.ts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment