This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Home } from '@happynrwl/shared-components'; | |
| import React from 'react'; | |
| export const Index = () => { | |
| return ( | |
| <> | |
| <Home /> | |
| <div>the rest of the component</div> | |
| </> | |
| ); | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| happynrwl/ | |
| ├── apps/ | |
| │ ├── tuskdesk/ | |
| │ └── tuskdesk-e2e/ | |
| ├── libs/ | |
| │ └── shared-components/ | |
| │ ├── src/ | |
| │ │ ├── lib/ | |
| │ │ │ ├── home.css | |
| │ │ │ ├── home.tsx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| happynrwl/ | |
| ├── apps/ | |
| │ ├── tuskdesk/ | |
| │ │ ├── pages/ | |
| │ │ │ ├── index.css | |
| │ │ │ └── index.tsx | |
| │ │ ├── jest.conf.js | |
| │ │ ├── tsconfig.json | |
| │ │ ├── tsconfig.spec.json | |
| │ │ └── .eslintrc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Message } from '@happyorg/api-interfaces'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apps/ | |
| agent/ | |
| agent-e2e/ | |
| api/ | |
| tickets/ | |
| tickets-e2e/ | |
| libs/ | |
| api-interfaces/ | |
| ticket-list/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { TicketList } from '@happyorg/ticket-list'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apps/ | |
| api/ | |
| tickets/ | |
| tickets-e2e/ | |
| libs/ | |
| api-interfaces/ | |
| ticket-list/ | |
| src/ | |
| lib/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apps/ | |
| api/ | |
| src/ | |
| app/ | |
| main.ts | |
| jest.config.js | |
| tsconfig.json | |
| .eslintrc | |
| tickets/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function talksReducer(state: TalksState, action: Action) { | |
| switch(action.type) { | |
| case '[Talks] Talks Updated': | |
| talksAdapter.addAll(talks, { ...state, filters }); | |
| //... | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export interface TalksPartialState { | |
| readonly talks: TalksState; | |
| } |