-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[native] introduce barebones keyserver selection list screen
Summary: This diff introduces the barebones keyserver selection list screen and all the navigation logic to navigate from the profile screen to this new screen Linear Task: https://linear.app/comm/issue/ENG-4911/introduce-keyserver-selection-screen-into-our-profile-app-navigation Depends on D9565 Test Plan: Please see the demo video below {F834123} Reviewers: rohan, inka, michal Reviewed By: rohan Subscribers: ashoat, tomek, wyilio Differential Revision: https://phab.comm.dev/D9566
- Loading branch information
Showing
4 changed files
with
22 additions
and
1 deletion.
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 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 @@ | ||
// @flow | ||
|
||
import * as React from 'react'; | ||
|
||
// eslint-disable-next-line no-unused-vars | ||
function KeyserverSelectionList(props: { ... }): React.Node { | ||
return null; | ||
} | ||
|
||
export default KeyserverSelectionList; |
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