-
Notifications
You must be signed in to change notification settings - Fork 303
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
28 additions
and
6 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
7 changes: 7 additions & 0 deletions
7
...c/features/cfd/modals/ClientVerificationModal/components/DocumentsList/DocumentsList.scss
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,7 @@ | ||
.wallets-documents-list { | ||
width: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
gap: 1.6rem; | ||
} |
15 changes: 15 additions & 0 deletions
15
...rc/features/cfd/modals/ClientVerificationModal/components/DocumentsList/DocumentsList.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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React from 'react'; | ||
import { DocumentTile } from './components'; | ||
import './DocumentsList.scss'; | ||
|
||
const DocumentsList = () => { | ||
return ( | ||
<div className='wallets-documents-list'> | ||
<DocumentTile title='Proof of identity' /> | ||
Check failure on line 8 in packages/wallets/src/features/cfd/modals/ClientVerificationModal/components/DocumentsList/DocumentsList.tsx GitHub Actions / Build And Test
|
||
<DocumentTile title='Proof of address' /> | ||
Check failure on line 9 in packages/wallets/src/features/cfd/modals/ClientVerificationModal/components/DocumentsList/DocumentsList.tsx GitHub Actions / Build And Test
|
||
<DocumentTile title='Personal Details' /> | ||
Check failure on line 10 in packages/wallets/src/features/cfd/modals/ClientVerificationModal/components/DocumentsList/DocumentsList.tsx GitHub Actions / Build And Test
|
||
</div> | ||
); | ||
}; | ||
|
||
export default DocumentsList; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions
1
.../features/cfd/modals/ClientVerificationModal/components/DocumentsList/components/index.ts
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 @@ | ||
export * from './DocumentTile'; |
1 change: 1 addition & 0 deletions
1
...wallets/src/features/cfd/modals/ClientVerificationModal/components/DocumentsList/index.ts
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 @@ | ||
export { default as DocumentsList } from './DocumentsList'; |
2 changes: 1 addition & 1 deletion
2
packages/wallets/src/features/cfd/modals/ClientVerificationModal/components/index.ts
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 +1 @@ | ||
export * from './DocumentTile'; | ||
export * from './DocumentsList'; |