This repository has been archived by the owner on Dec 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #134 from uktrade/reorganise-directory-structure
refactor: Reorganise directories
- Loading branch information
Showing
94 changed files
with
7,712 additions
and
753 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import accountsAreDueFixture from './companies_house/accounts_are_due' | ||
import incorporatedFixture from './companies_house/incorporated' | ||
import exportOfGoodsFixture from './hmrc/export_of_goods' | ||
import interactionFixture from './interactions/interaction' | ||
import investmentProjectFixture from './interactions/investment_project' | ||
import serviceDeliveryFixture from './interactions/service_delivery' | ||
import projectAddedFdiFixture from './investment_projects/project_added_fdi' | ||
import projectAddedNonFdiFixture from './investment_projects/project_added_non_fdi' | ||
import projectAddedCtiFixture from './investment_projects/project_added_cti' | ||
import orderAddedFixture from './omis/order_added' | ||
|
||
export default [ | ||
accountsAreDueFixture, | ||
incorporatedFixture, | ||
exportOfGoodsFixture, | ||
interactionFixture, | ||
investmentProjectFixture, | ||
serviceDeliveryFixture, | ||
projectAddedFdiFixture, | ||
projectAddedNonFdiFixture, | ||
projectAddedCtiFixture, | ||
orderAddedFixture, | ||
] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import React from 'react' | ||
import { storiesOf } from '@storybook/react' | ||
|
||
import Activity from '../Activity' | ||
import fixtureInteraction from '../__fixtures__/interactions/interaction' | ||
import fixtureInvestmentProject from '../__fixtures__/interactions/investment_project' | ||
import foreignDirectInvestment from '../__fixtures__/investment_projects/project_added_fdi' | ||
import nonCommitmentToInvest from '../__fixtures__/investment_projects/project_added_non_fdi' | ||
import commitmentToInvest from '../__fixtures__/investment_projects/project_added_cti' | ||
import orderAdded from '../__fixtures__/omis/order_added' | ||
|
||
storiesOf('Activity', module) | ||
.add('interaction', () => <Activity activity={fixtureInteraction} />) | ||
.add('investment project - interaction', () => <Activity activity={fixtureInvestmentProject} />) | ||
.add('investment project added - FDI', () => <Activity activity={foreignDirectInvestment} />) | ||
.add('investment project added - Non-FDI', () => <Activity activity={nonCommitmentToInvest} />) | ||
.add('investment project added - CTI', () => <Activity activity={commitmentToInvest} />) | ||
.add('omis - new order added', () => <Activity activity={orderAdded} />) |
This file contains 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
This file contains 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
File renamed without changes
This file contains 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
This file contains 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
This file contains 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
This file contains 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
2 changes: 1 addition & 1 deletion
2
...activity-feed/ActivityFeedHeader.test.jsx → ...eed/__tests__/ActivityFeedHeader.test.jsx
This file contains 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
This file contains 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
Oops, something went wrong.