-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: change file names for consistency (#639)
* rename file names and class names * Reorganize import sources
- Loading branch information
1 parent
863e30d
commit 3aa3f1c
Showing
14 changed files
with
44 additions
and
38 deletions.
There are no files selected for viewing
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.
This file was deleted.
Oops, something went wrong.
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,11 @@ | ||
import * as React from 'react'; | ||
import { RouteProps } from 'react-router'; | ||
import ManageAccountContainer, { | ||
ManageAccountModes, | ||
} from './ManageAccountContainer'; | ||
|
||
const CreateAccountContainer = (props: RouteProps) => { | ||
return <ManageAccountContainer mode={ManageAccountModes.CREATE} {...props} />; | ||
}; | ||
|
||
export default CreateAccountContainer; |
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,10 @@ | ||
import * as React from 'react'; | ||
import ManageAccountContainer, { | ||
ManageAccountModes, | ||
} from './ManageAccountContainer'; | ||
|
||
const EditAccountContainer = () => ( | ||
<ManageAccountContainer mode={ManageAccountModes.EDIT} /> | ||
); | ||
|
||
export default EditAccountContainer; |
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.
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,10 @@ | ||
import * as React from 'react'; | ||
import ManageApplicationContainer, { | ||
ManageApplicationModes, | ||
} from './ManageApplicationContainer'; | ||
|
||
const CreateApplicationContainer = () => ( | ||
<ManageApplicationContainer mode={ManageApplicationModes.CREATE} /> | ||
); | ||
|
||
export default CreateApplicationContainer; |
6 changes: 3 additions & 3 deletions
6
...atures/Application/ApplicationEdition.tsx → .../Application/EditApplicationContainer.tsx
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import * as React from 'react'; | ||
import ManageApplication, { | ||
import ManageApplicationContainer, { | ||
ManageApplicationModes, | ||
} from './ApplicationManagement'; | ||
} from './ManageApplicationContainer'; | ||
|
||
const EditApplicationContainer = () => ( | ||
<ManageApplication mode={ManageApplicationModes.EDIT} /> | ||
<ManageApplicationContainer mode={ManageApplicationModes.EDIT} /> | ||
); | ||
|
||
export default EditApplicationContainer; |
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.