-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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 #430 from AdamWillford/react
Create += add all pages and amend dropdowns to reflect prod
- Loading branch information
Showing
32 changed files
with
453 additions
and
73 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import React from 'react' | ||
|
||
const EditContact = (props) => { | ||
return ( | ||
<div> | ||
<h3>Edit Contact</h3> | ||
</div> | ||
) | ||
} | ||
|
||
export default EditContact |
11 changes: 11 additions & 0 deletions
11
src/views/email-exchange/administration/EditMailboxPermissions.js
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 React from 'react' | ||
|
||
const EditMailboxPermissions = (props) => { | ||
return ( | ||
<div> | ||
<h3>Edit Mailbox Permissions</h3> | ||
</div> | ||
) | ||
} | ||
|
||
export default EditMailboxPermissions |
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
11 changes: 11 additions & 0 deletions
11
src/views/email-exchange/administration/ViewMobileDevices.js
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 React from 'react' | ||
|
||
const ViewMobileDevices = (props) => { | ||
return ( | ||
<div> | ||
<h3>View Mobile Devices</h3> | ||
</div> | ||
) | ||
} | ||
|
||
export default ViewMobileDevices |
Oops, something went wrong.