diff --git a/awx/ui_next/.eslintrc b/awx/ui_next/.eslintrc index e3e33635e8..c029eb3417 100644 --- a/awx/ui_next/.eslintrc +++ b/awx/ui_next/.eslintrc @@ -140,6 +140,7 @@ "jsx-a11y/label-has-for": "off", "jsx-a11y/label-has-associated-control": "off", "react-hooks/rules-of-hooks": "error", - "react-hooks/exhaustive-deps": "warn" + "react-hooks/exhaustive-deps": "warn", + "react/jsx-filename-extension": "off" } } diff --git a/awx/ui_next/CONTRIBUTING.md b/awx/ui_next/CONTRIBUTING.md index 2ec214a31a..b5dd40d386 100644 --- a/awx/ui_next/CONTRIBUTING.md +++ b/awx/ui_next/CONTRIBUTING.md @@ -169,24 +169,24 @@ Inside these folders, the internal structure is: In the root of `/src`, there are a few files which are used to initialize the react app. These are -- **index.jsx** +- **index.js** - Connects react app to root dom node. - Sets up root route structure, navigation grouping and login modal - Calls base context providers - Imports .scss styles. -- **app.jsx** +- **app.js** - Sets standard page layout, about modal, and root dialog modal. -- **RootProvider.jsx** +- **RootProvider.js** - Sets up all context providers. - Initializes i18n and router ### Naming files -Ideally, files should be named the same as the component they export, and tests with `.test` appended. In other words, `` would be defined in `FooBar.jsx`, and its tests would be defined in `FooBar.test.jsx`. +Ideally, files should be named the same as the component they export, and tests with `.test` appended. In other words, `` would be defined in `FooBar.js`, and its tests would be defined in `FooBar.test.js`. #### Naming components that use the context api -**File naming** - Since contexts export both consumer and provider (and potentially in withContext function form), the file can be simplified to be named after the consumer export. In other words, the file containing the `Network` context components would be named `Network.jsx`. +**File naming** - Since contexts export both consumer and provider (and potentially in withContext function form), the file can be simplified to be named after the consumer export. In other words, the file containing the `Network` context components would be named `Network.js`. **Component naming and conventions** - In order to provide a consistent interface with react-router and [lingui](https://lingui.js.org/), as well as make their usage easier and less verbose, context components follow these conventions: @@ -264,7 +264,7 @@ There are currently a few custom hooks: 1. [useRequest](https://github.com/ansible/awx/blob/devel/awx/ui_next/src/util/useRequest.js#L21) encapsulates main actions related to requests. 2. [useDismissableError](https://github.com/ansible/awx/blob/devel/awx/ui_next/src/util/useRequest.js#L71) provides controls for "dismissing" an error message. 3. [useDeleteItems](https://github.com/ansible/awx/blob/devel/awx/ui_next/src/util/useRequest.js#L98) handles deletion of items from a paginated item list. -4. [useSelected](https://github.com/ansible/awx/blob/devel/awx/ui_next/src/util/useSelected.jsx#L14) provides a way to read and update a selected list. +4. [useSelected](https://github.com/ansible/awx/blob/devel/awx/ui_next/src/util/useSelected.js#L14) provides a way to read and update a selected list. ### Naming Functions @@ -302,7 +302,7 @@ this.state = { ### Testing components that use contexts -We have several React contexts that wrap much of the app, including those from react-router, lingui, and some of our own. When testing a component that depends on one or more of these, you can use the `mountWithContexts()` helper function found in `testUtils/enzymeHelpers.jsx`. This can be used just like Enzyme's `mount()` function, except it will wrap the component tree with the necessary context providers and basic stub data. +We have several React contexts that wrap much of the app, including those from react-router, lingui, and some of our own. When testing a component that depends on one or more of these, you can use the `mountWithContexts()` helper function found in `testUtils/enzymeHelpers.js`. This can be used just like Enzyme's `mount()` function, except it will wrap the component tree with the necessary context providers and basic stub data. If you want to stub the value of a context, or assert actions taken on it, you can customize a contexts value by passing a second parameter to `mountWithContexts`. For example, this provides a custom value for the `Config` context: @@ -352,7 +352,7 @@ You can learn more about the ways lingui and its React helpers at [this link](ht 1. `npm run add-locale` to add the language that you want to translate to (we should only have to do this once and the commit to repo afaik). Example: `npm run add-locale en es fr` # Add English, Spanish and French locale 2. `npm run extract-strings` to create .po files for each language specified. The .po files will be placed in src/locales. When updating strings that are used by `` or `plural()` you will need to run this command to get the strings to render properly. This command will create `.po` files for each of the supported languages that will need to be committed with your PR. 3. Open up the .po file for the language you want to test and add some translations. In production we would pass this .po file off to the translation team. -4. Once you've edited your .po file (or we've gotten a .po file back from the translation team) run `npm run compile-strings`. This command takes the .po files and turns them into a minified JSON object and can be seen in the `messages.js` file in each locale directory. These files get loaded at the App root level (see: App.jsx). +4. Once you've edited your .po file (or we've gotten a .po file back from the translation team) run `npm run compile-strings`. This command takes the .po files and turns them into a minified JSON object and can be seen in the `messages.js` file in each locale directory. These files get loaded at the App root level (see: App.js). 5. Change the language in your browser and reload the page. You should see your specified translations in place of English strings. ### Marking an issue to be translated diff --git a/awx/ui_next/src/App.jsx b/awx/ui_next/src/App.js similarity index 100% rename from awx/ui_next/src/App.jsx rename to awx/ui_next/src/App.js diff --git a/awx/ui_next/src/App.test.jsx b/awx/ui_next/src/App.test.js similarity index 100% rename from awx/ui_next/src/App.test.jsx rename to awx/ui_next/src/App.test.js diff --git a/awx/ui_next/src/api/Base.test.jsx b/awx/ui_next/src/api/Base.test.js similarity index 100% rename from awx/ui_next/src/api/Base.test.jsx rename to awx/ui_next/src/api/Base.test.js diff --git a/awx/ui_next/src/api/models/Organizations.test.jsx b/awx/ui_next/src/api/models/Organizations.test.js similarity index 100% rename from awx/ui_next/src/api/models/Organizations.test.jsx rename to awx/ui_next/src/api/models/Organizations.test.js diff --git a/awx/ui_next/src/api/models/Root.test.jsx b/awx/ui_next/src/api/models/Root.test.js similarity index 100% rename from awx/ui_next/src/api/models/Root.test.jsx rename to awx/ui_next/src/api/models/Root.test.js diff --git a/awx/ui_next/src/api/models/Teams.test.jsx b/awx/ui_next/src/api/models/Teams.test.js similarity index 100% rename from awx/ui_next/src/api/models/Teams.test.jsx rename to awx/ui_next/src/api/models/Teams.test.js diff --git a/awx/ui_next/src/api/models/Users.test.jsx b/awx/ui_next/src/api/models/Users.test.js similarity index 100% rename from awx/ui_next/src/api/models/Users.test.jsx rename to awx/ui_next/src/api/models/Users.test.js diff --git a/awx/ui_next/src/components/About/About.jsx b/awx/ui_next/src/components/About/About.js similarity index 100% rename from awx/ui_next/src/components/About/About.jsx rename to awx/ui_next/src/components/About/About.js diff --git a/awx/ui_next/src/components/About/About.test.jsx b/awx/ui_next/src/components/About/About.test.js similarity index 100% rename from awx/ui_next/src/components/About/About.test.jsx rename to awx/ui_next/src/components/About/About.test.js diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCommands.js similarity index 100% rename from awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx rename to awx/ui_next/src/components/AdHocCommands/AdHocCommands.js diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCommands.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCommands.test.js similarity index 100% rename from awx/ui_next/src/components/AdHocCommands/AdHocCommands.test.jsx rename to awx/ui_next/src/components/AdHocCommands/AdHocCommands.test.js diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.js similarity index 100% rename from awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.jsx rename to awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.js diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.test.js similarity index 100% rename from awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.test.jsx rename to awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.test.js diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.js similarity index 100% rename from awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.jsx rename to awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.js diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.test.js similarity index 100% rename from awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.test.jsx rename to awx/ui_next/src/components/AdHocCommands/AdHocCredentialStep.test.js diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.js similarity index 100% rename from awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.jsx rename to awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.js diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.test.js similarity index 100% rename from awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.test.jsx rename to awx/ui_next/src/components/AdHocCommands/AdHocDetailsStep.test.js diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnironmentStep.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnironmentStep.test.js similarity index 100% rename from awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnironmentStep.test.jsx rename to awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnironmentStep.test.js diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.js similarity index 100% rename from awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx rename to awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.js diff --git a/awx/ui_next/src/components/AddDropDownButton/AddDropDownButton.jsx b/awx/ui_next/src/components/AddDropDownButton/AddDropDownButton.js similarity index 100% rename from awx/ui_next/src/components/AddDropDownButton/AddDropDownButton.jsx rename to awx/ui_next/src/components/AddDropDownButton/AddDropDownButton.js diff --git a/awx/ui_next/src/components/AddDropDownButton/AddDropDownButton.test.jsx b/awx/ui_next/src/components/AddDropDownButton/AddDropDownButton.test.js similarity index 100% rename from awx/ui_next/src/components/AddDropDownButton/AddDropDownButton.test.jsx rename to awx/ui_next/src/components/AddDropDownButton/AddDropDownButton.test.js diff --git a/awx/ui_next/src/components/AddRole/AddResourceRole.jsx b/awx/ui_next/src/components/AddRole/AddResourceRole.js similarity index 100% rename from awx/ui_next/src/components/AddRole/AddResourceRole.jsx rename to awx/ui_next/src/components/AddRole/AddResourceRole.js diff --git a/awx/ui_next/src/components/AddRole/AddResourceRole.test.jsx b/awx/ui_next/src/components/AddRole/AddResourceRole.test.js similarity index 100% rename from awx/ui_next/src/components/AddRole/AddResourceRole.test.jsx rename to awx/ui_next/src/components/AddRole/AddResourceRole.test.js diff --git a/awx/ui_next/src/components/AddRole/CheckboxCard.jsx b/awx/ui_next/src/components/AddRole/CheckboxCard.js similarity index 100% rename from awx/ui_next/src/components/AddRole/CheckboxCard.jsx rename to awx/ui_next/src/components/AddRole/CheckboxCard.js diff --git a/awx/ui_next/src/components/AddRole/CheckboxCard.test.jsx b/awx/ui_next/src/components/AddRole/CheckboxCard.test.js similarity index 100% rename from awx/ui_next/src/components/AddRole/CheckboxCard.test.jsx rename to awx/ui_next/src/components/AddRole/CheckboxCard.test.js diff --git a/awx/ui_next/src/components/AddRole/SelectResourceStep.jsx b/awx/ui_next/src/components/AddRole/SelectResourceStep.js similarity index 100% rename from awx/ui_next/src/components/AddRole/SelectResourceStep.jsx rename to awx/ui_next/src/components/AddRole/SelectResourceStep.js diff --git a/awx/ui_next/src/components/AddRole/SelectResourceStep.test.jsx b/awx/ui_next/src/components/AddRole/SelectResourceStep.test.js similarity index 100% rename from awx/ui_next/src/components/AddRole/SelectResourceStep.test.jsx rename to awx/ui_next/src/components/AddRole/SelectResourceStep.test.js diff --git a/awx/ui_next/src/components/AddRole/SelectRoleStep.jsx b/awx/ui_next/src/components/AddRole/SelectRoleStep.js similarity index 100% rename from awx/ui_next/src/components/AddRole/SelectRoleStep.jsx rename to awx/ui_next/src/components/AddRole/SelectRoleStep.js diff --git a/awx/ui_next/src/components/AddRole/SelectRoleStep.test.jsx b/awx/ui_next/src/components/AddRole/SelectRoleStep.test.js similarity index 100% rename from awx/ui_next/src/components/AddRole/SelectRoleStep.test.jsx rename to awx/ui_next/src/components/AddRole/SelectRoleStep.test.js diff --git a/awx/ui_next/src/components/AlertModal/AlertModal.jsx b/awx/ui_next/src/components/AlertModal/AlertModal.js similarity index 100% rename from awx/ui_next/src/components/AlertModal/AlertModal.jsx rename to awx/ui_next/src/components/AlertModal/AlertModal.js diff --git a/awx/ui_next/src/components/AlertModal/AlertModal.test.jsx b/awx/ui_next/src/components/AlertModal/AlertModal.test.js similarity index 100% rename from awx/ui_next/src/components/AlertModal/AlertModal.test.jsx rename to awx/ui_next/src/components/AlertModal/AlertModal.test.js diff --git a/awx/ui_next/src/components/AnsibleSelect/AnsibleSelect.jsx b/awx/ui_next/src/components/AnsibleSelect/AnsibleSelect.js similarity index 100% rename from awx/ui_next/src/components/AnsibleSelect/AnsibleSelect.jsx rename to awx/ui_next/src/components/AnsibleSelect/AnsibleSelect.js diff --git a/awx/ui_next/src/components/AnsibleSelect/AnsibleSelect.test.jsx b/awx/ui_next/src/components/AnsibleSelect/AnsibleSelect.test.js similarity index 100% rename from awx/ui_next/src/components/AnsibleSelect/AnsibleSelect.test.jsx rename to awx/ui_next/src/components/AnsibleSelect/AnsibleSelect.test.js diff --git a/awx/ui_next/src/components/AppContainer/AppContainer.jsx b/awx/ui_next/src/components/AppContainer/AppContainer.js similarity index 100% rename from awx/ui_next/src/components/AppContainer/AppContainer.jsx rename to awx/ui_next/src/components/AppContainer/AppContainer.js diff --git a/awx/ui_next/src/components/AppContainer/AppContainer.test.jsx b/awx/ui_next/src/components/AppContainer/AppContainer.test.js similarity index 100% rename from awx/ui_next/src/components/AppContainer/AppContainer.test.jsx rename to awx/ui_next/src/components/AppContainer/AppContainer.test.js diff --git a/awx/ui_next/src/components/AppContainer/BrandLogo.jsx b/awx/ui_next/src/components/AppContainer/BrandLogo.js similarity index 100% rename from awx/ui_next/src/components/AppContainer/BrandLogo.jsx rename to awx/ui_next/src/components/AppContainer/BrandLogo.js diff --git a/awx/ui_next/src/components/AppContainer/BrandLogo.test.jsx b/awx/ui_next/src/components/AppContainer/BrandLogo.test.js similarity index 100% rename from awx/ui_next/src/components/AppContainer/BrandLogo.test.jsx rename to awx/ui_next/src/components/AppContainer/BrandLogo.test.js diff --git a/awx/ui_next/src/components/AppContainer/NavExpandableGroup.jsx b/awx/ui_next/src/components/AppContainer/NavExpandableGroup.js similarity index 100% rename from awx/ui_next/src/components/AppContainer/NavExpandableGroup.jsx rename to awx/ui_next/src/components/AppContainer/NavExpandableGroup.js diff --git a/awx/ui_next/src/components/AppContainer/NavExpandableGroup.test.jsx b/awx/ui_next/src/components/AppContainer/NavExpandableGroup.test.js similarity index 100% rename from awx/ui_next/src/components/AppContainer/NavExpandableGroup.test.jsx rename to awx/ui_next/src/components/AppContainer/NavExpandableGroup.test.js diff --git a/awx/ui_next/src/components/AppContainer/PageHeaderToolbar.jsx b/awx/ui_next/src/components/AppContainer/PageHeaderToolbar.js similarity index 100% rename from awx/ui_next/src/components/AppContainer/PageHeaderToolbar.jsx rename to awx/ui_next/src/components/AppContainer/PageHeaderToolbar.js diff --git a/awx/ui_next/src/components/AppContainer/PageHeaderToolbar.test.jsx b/awx/ui_next/src/components/AppContainer/PageHeaderToolbar.test.js similarity index 100% rename from awx/ui_next/src/components/AppContainer/PageHeaderToolbar.test.jsx rename to awx/ui_next/src/components/AppContainer/PageHeaderToolbar.test.js diff --git a/awx/ui_next/src/components/AppContainer/index.jsx b/awx/ui_next/src/components/AppContainer/index.js similarity index 100% rename from awx/ui_next/src/components/AppContainer/index.jsx rename to awx/ui_next/src/components/AppContainer/index.js diff --git a/awx/ui_next/src/components/AppContainer/useWsPendingApprovalCount.test.jsx b/awx/ui_next/src/components/AppContainer/useWsPendingApprovalCount.test.js similarity index 100% rename from awx/ui_next/src/components/AppContainer/useWsPendingApprovalCount.test.jsx rename to awx/ui_next/src/components/AppContainer/useWsPendingApprovalCount.test.js diff --git a/awx/ui_next/src/components/AppendBody/AppendBody.jsx b/awx/ui_next/src/components/AppendBody/AppendBody.js similarity index 100% rename from awx/ui_next/src/components/AppendBody/AppendBody.jsx rename to awx/ui_next/src/components/AppendBody/AppendBody.js diff --git a/awx/ui_next/src/components/AssociateModal/AssociateModal.jsx b/awx/ui_next/src/components/AssociateModal/AssociateModal.js similarity index 100% rename from awx/ui_next/src/components/AssociateModal/AssociateModal.jsx rename to awx/ui_next/src/components/AssociateModal/AssociateModal.js diff --git a/awx/ui_next/src/components/AssociateModal/AssociateModal.test.jsx b/awx/ui_next/src/components/AssociateModal/AssociateModal.test.js similarity index 100% rename from awx/ui_next/src/components/AssociateModal/AssociateModal.test.jsx rename to awx/ui_next/src/components/AssociateModal/AssociateModal.test.js diff --git a/awx/ui_next/src/components/Background/Background.jsx b/awx/ui_next/src/components/Background/Background.js similarity index 100% rename from awx/ui_next/src/components/Background/Background.jsx rename to awx/ui_next/src/components/Background/Background.js diff --git a/awx/ui_next/src/components/Background/Background.test.jsx b/awx/ui_next/src/components/Background/Background.test.js similarity index 100% rename from awx/ui_next/src/components/Background/Background.test.jsx rename to awx/ui_next/src/components/Background/Background.test.js diff --git a/awx/ui_next/src/components/Card/CardActionsRow.jsx b/awx/ui_next/src/components/Card/CardActionsRow.js similarity index 100% rename from awx/ui_next/src/components/Card/CardActionsRow.jsx rename to awx/ui_next/src/components/Card/CardActionsRow.js diff --git a/awx/ui_next/src/components/Card/CardBody.jsx b/awx/ui_next/src/components/Card/CardBody.js similarity index 100% rename from awx/ui_next/src/components/Card/CardBody.jsx rename to awx/ui_next/src/components/Card/CardBody.js diff --git a/awx/ui_next/src/components/CheckboxListItem/CheckboxListItem.jsx b/awx/ui_next/src/components/CheckboxListItem/CheckboxListItem.js similarity index 100% rename from awx/ui_next/src/components/CheckboxListItem/CheckboxListItem.jsx rename to awx/ui_next/src/components/CheckboxListItem/CheckboxListItem.js diff --git a/awx/ui_next/src/components/CheckboxListItem/CheckboxListItem.test.jsx b/awx/ui_next/src/components/CheckboxListItem/CheckboxListItem.test.js similarity index 100% rename from awx/ui_next/src/components/CheckboxListItem/CheckboxListItem.test.jsx rename to awx/ui_next/src/components/CheckboxListItem/CheckboxListItem.test.js diff --git a/awx/ui_next/src/components/ChipGroup/ChipGroup.jsx b/awx/ui_next/src/components/ChipGroup/ChipGroup.js similarity index 100% rename from awx/ui_next/src/components/ChipGroup/ChipGroup.jsx rename to awx/ui_next/src/components/ChipGroup/ChipGroup.js diff --git a/awx/ui_next/src/components/ChipGroup/ChipGroup.test.jsx b/awx/ui_next/src/components/ChipGroup/ChipGroup.test.js similarity index 100% rename from awx/ui_next/src/components/ChipGroup/ChipGroup.test.jsx rename to awx/ui_next/src/components/ChipGroup/ChipGroup.test.js diff --git a/awx/ui_next/src/components/CodeEditor/CodeEditor.jsx b/awx/ui_next/src/components/CodeEditor/CodeEditor.js similarity index 100% rename from awx/ui_next/src/components/CodeEditor/CodeEditor.jsx rename to awx/ui_next/src/components/CodeEditor/CodeEditor.js diff --git a/awx/ui_next/src/components/CodeEditor/CodeEditor.test.jsx b/awx/ui_next/src/components/CodeEditor/CodeEditor.test.js similarity index 100% rename from awx/ui_next/src/components/CodeEditor/CodeEditor.test.jsx rename to awx/ui_next/src/components/CodeEditor/CodeEditor.test.js diff --git a/awx/ui_next/src/components/CodeEditor/CodeEditorField.jsx b/awx/ui_next/src/components/CodeEditor/CodeEditorField.js similarity index 100% rename from awx/ui_next/src/components/CodeEditor/CodeEditorField.jsx rename to awx/ui_next/src/components/CodeEditor/CodeEditorField.js diff --git a/awx/ui_next/src/components/CodeEditor/VariablesDetail.jsx b/awx/ui_next/src/components/CodeEditor/VariablesDetail.js similarity index 100% rename from awx/ui_next/src/components/CodeEditor/VariablesDetail.jsx rename to awx/ui_next/src/components/CodeEditor/VariablesDetail.js diff --git a/awx/ui_next/src/components/CodeEditor/VariablesDetail.test.jsx b/awx/ui_next/src/components/CodeEditor/VariablesDetail.test.js similarity index 100% rename from awx/ui_next/src/components/CodeEditor/VariablesDetail.test.jsx rename to awx/ui_next/src/components/CodeEditor/VariablesDetail.test.js diff --git a/awx/ui_next/src/components/CodeEditor/VariablesField.jsx b/awx/ui_next/src/components/CodeEditor/VariablesField.js similarity index 100% rename from awx/ui_next/src/components/CodeEditor/VariablesField.jsx rename to awx/ui_next/src/components/CodeEditor/VariablesField.js diff --git a/awx/ui_next/src/components/CodeEditor/VariablesField.test.jsx b/awx/ui_next/src/components/CodeEditor/VariablesField.test.js similarity index 100% rename from awx/ui_next/src/components/CodeEditor/VariablesField.test.jsx rename to awx/ui_next/src/components/CodeEditor/VariablesField.test.js diff --git a/awx/ui_next/src/components/CodeEditor/VariablesInput.jsx b/awx/ui_next/src/components/CodeEditor/VariablesInput.js similarity index 100% rename from awx/ui_next/src/components/CodeEditor/VariablesInput.jsx rename to awx/ui_next/src/components/CodeEditor/VariablesInput.js diff --git a/awx/ui_next/src/components/ContentEmpty/ContentEmpty.jsx b/awx/ui_next/src/components/ContentEmpty/ContentEmpty.js similarity index 100% rename from awx/ui_next/src/components/ContentEmpty/ContentEmpty.jsx rename to awx/ui_next/src/components/ContentEmpty/ContentEmpty.js diff --git a/awx/ui_next/src/components/ContentEmpty/ContentEmpty.test.jsx b/awx/ui_next/src/components/ContentEmpty/ContentEmpty.test.js similarity index 100% rename from awx/ui_next/src/components/ContentEmpty/ContentEmpty.test.jsx rename to awx/ui_next/src/components/ContentEmpty/ContentEmpty.test.js diff --git a/awx/ui_next/src/components/ContentError/ContentError.jsx b/awx/ui_next/src/components/ContentError/ContentError.js similarity index 100% rename from awx/ui_next/src/components/ContentError/ContentError.jsx rename to awx/ui_next/src/components/ContentError/ContentError.js diff --git a/awx/ui_next/src/components/ContentError/ContentError.test.jsx b/awx/ui_next/src/components/ContentError/ContentError.test.js similarity index 100% rename from awx/ui_next/src/components/ContentError/ContentError.test.jsx rename to awx/ui_next/src/components/ContentError/ContentError.test.js diff --git a/awx/ui_next/src/components/ContentLoading/ContentLoading.jsx b/awx/ui_next/src/components/ContentLoading/ContentLoading.js similarity index 100% rename from awx/ui_next/src/components/ContentLoading/ContentLoading.jsx rename to awx/ui_next/src/components/ContentLoading/ContentLoading.js diff --git a/awx/ui_next/src/components/ContentLoading/ContentLoading.test.jsx b/awx/ui_next/src/components/ContentLoading/ContentLoading.test.js similarity index 100% rename from awx/ui_next/src/components/ContentLoading/ContentLoading.test.jsx rename to awx/ui_next/src/components/ContentLoading/ContentLoading.test.js diff --git a/awx/ui_next/src/components/CopyButton/CopyButton.jsx b/awx/ui_next/src/components/CopyButton/CopyButton.js similarity index 100% rename from awx/ui_next/src/components/CopyButton/CopyButton.jsx rename to awx/ui_next/src/components/CopyButton/CopyButton.js diff --git a/awx/ui_next/src/components/CopyButton/CopyButton.test.jsx b/awx/ui_next/src/components/CopyButton/CopyButton.test.js similarity index 100% rename from awx/ui_next/src/components/CopyButton/CopyButton.test.jsx rename to awx/ui_next/src/components/CopyButton/CopyButton.test.js diff --git a/awx/ui_next/src/components/CredentialChip/CredentialChip.jsx b/awx/ui_next/src/components/CredentialChip/CredentialChip.js similarity index 100% rename from awx/ui_next/src/components/CredentialChip/CredentialChip.jsx rename to awx/ui_next/src/components/CredentialChip/CredentialChip.js diff --git a/awx/ui_next/src/components/CredentialChip/CredentialChip.test.jsx b/awx/ui_next/src/components/CredentialChip/CredentialChip.test.js similarity index 100% rename from awx/ui_next/src/components/CredentialChip/CredentialChip.test.jsx rename to awx/ui_next/src/components/CredentialChip/CredentialChip.test.js diff --git a/awx/ui_next/src/components/DataListToolbar/DataListToolbar.jsx b/awx/ui_next/src/components/DataListToolbar/DataListToolbar.js similarity index 100% rename from awx/ui_next/src/components/DataListToolbar/DataListToolbar.jsx rename to awx/ui_next/src/components/DataListToolbar/DataListToolbar.js diff --git a/awx/ui_next/src/components/DataListToolbar/DataListToolbar.test.jsx b/awx/ui_next/src/components/DataListToolbar/DataListToolbar.test.js similarity index 100% rename from awx/ui_next/src/components/DataListToolbar/DataListToolbar.test.jsx rename to awx/ui_next/src/components/DataListToolbar/DataListToolbar.test.js diff --git a/awx/ui_next/src/components/DeleteButton/DeleteButton.jsx b/awx/ui_next/src/components/DeleteButton/DeleteButton.js similarity index 100% rename from awx/ui_next/src/components/DeleteButton/DeleteButton.jsx rename to awx/ui_next/src/components/DeleteButton/DeleteButton.js diff --git a/awx/ui_next/src/components/DeleteButton/DeleteButton.test.jsx b/awx/ui_next/src/components/DeleteButton/DeleteButton.test.js similarity index 100% rename from awx/ui_next/src/components/DeleteButton/DeleteButton.test.jsx rename to awx/ui_next/src/components/DeleteButton/DeleteButton.test.js diff --git a/awx/ui_next/src/components/DetailList/ArrayDetail.jsx b/awx/ui_next/src/components/DetailList/ArrayDetail.js similarity index 100% rename from awx/ui_next/src/components/DetailList/ArrayDetail.jsx rename to awx/ui_next/src/components/DetailList/ArrayDetail.js diff --git a/awx/ui_next/src/components/DetailList/CodeDetail.jsx b/awx/ui_next/src/components/DetailList/CodeDetail.js similarity index 100% rename from awx/ui_next/src/components/DetailList/CodeDetail.jsx rename to awx/ui_next/src/components/DetailList/CodeDetail.js diff --git a/awx/ui_next/src/components/DetailList/DeletedDetail.jsx b/awx/ui_next/src/components/DetailList/DeletedDetail.js similarity index 100% rename from awx/ui_next/src/components/DetailList/DeletedDetail.jsx rename to awx/ui_next/src/components/DetailList/DeletedDetail.js diff --git a/awx/ui_next/src/components/DetailList/Detail.jsx b/awx/ui_next/src/components/DetailList/Detail.js similarity index 100% rename from awx/ui_next/src/components/DetailList/Detail.jsx rename to awx/ui_next/src/components/DetailList/Detail.js diff --git a/awx/ui_next/src/components/DetailList/Detail.test.jsx b/awx/ui_next/src/components/DetailList/Detail.test.js similarity index 100% rename from awx/ui_next/src/components/DetailList/Detail.test.jsx rename to awx/ui_next/src/components/DetailList/Detail.test.js diff --git a/awx/ui_next/src/components/DetailList/DetailBadge.jsx b/awx/ui_next/src/components/DetailList/DetailBadge.js similarity index 100% rename from awx/ui_next/src/components/DetailList/DetailBadge.jsx rename to awx/ui_next/src/components/DetailList/DetailBadge.js diff --git a/awx/ui_next/src/components/DetailList/DetailList.jsx b/awx/ui_next/src/components/DetailList/DetailList.js similarity index 100% rename from awx/ui_next/src/components/DetailList/DetailList.jsx rename to awx/ui_next/src/components/DetailList/DetailList.js diff --git a/awx/ui_next/src/components/DetailList/DetailList.test.jsx b/awx/ui_next/src/components/DetailList/DetailList.test.js similarity index 100% rename from awx/ui_next/src/components/DetailList/DetailList.test.jsx rename to awx/ui_next/src/components/DetailList/DetailList.test.js diff --git a/awx/ui_next/src/components/DetailList/LaunchedByDetail.jsx b/awx/ui_next/src/components/DetailList/LaunchedByDetail.js similarity index 100% rename from awx/ui_next/src/components/DetailList/LaunchedByDetail.jsx rename to awx/ui_next/src/components/DetailList/LaunchedByDetail.js diff --git a/awx/ui_next/src/components/DetailList/NumberSinceDetail.jsx b/awx/ui_next/src/components/DetailList/NumberSinceDetail.js similarity index 100% rename from awx/ui_next/src/components/DetailList/NumberSinceDetail.jsx rename to awx/ui_next/src/components/DetailList/NumberSinceDetail.js diff --git a/awx/ui_next/src/components/DetailList/UserDateDetail.jsx b/awx/ui_next/src/components/DetailList/UserDateDetail.js similarity index 100% rename from awx/ui_next/src/components/DetailList/UserDateDetail.jsx rename to awx/ui_next/src/components/DetailList/UserDateDetail.js diff --git a/awx/ui_next/src/components/DisassociateButton/DisassociateButton.jsx b/awx/ui_next/src/components/DisassociateButton/DisassociateButton.js similarity index 100% rename from awx/ui_next/src/components/DisassociateButton/DisassociateButton.jsx rename to awx/ui_next/src/components/DisassociateButton/DisassociateButton.js diff --git a/awx/ui_next/src/components/DisassociateButton/DisassociateButton.test.jsx b/awx/ui_next/src/components/DisassociateButton/DisassociateButton.test.js similarity index 100% rename from awx/ui_next/src/components/DisassociateButton/DisassociateButton.test.jsx rename to awx/ui_next/src/components/DisassociateButton/DisassociateButton.test.js diff --git a/awx/ui_next/src/components/DocsLink/DocsLink.jsx b/awx/ui_next/src/components/DocsLink/DocsLink.js similarity index 100% rename from awx/ui_next/src/components/DocsLink/DocsLink.jsx rename to awx/ui_next/src/components/DocsLink/DocsLink.js diff --git a/awx/ui_next/src/components/DocsLink/index.jsx b/awx/ui_next/src/components/DocsLink/index.js similarity index 100% rename from awx/ui_next/src/components/DocsLink/index.jsx rename to awx/ui_next/src/components/DocsLink/index.js diff --git a/awx/ui_next/src/components/ErrorDetail/ErrorDetail.jsx b/awx/ui_next/src/components/ErrorDetail/ErrorDetail.js similarity index 100% rename from awx/ui_next/src/components/ErrorDetail/ErrorDetail.jsx rename to awx/ui_next/src/components/ErrorDetail/ErrorDetail.js diff --git a/awx/ui_next/src/components/ErrorDetail/ErrorDetail.test.jsx b/awx/ui_next/src/components/ErrorDetail/ErrorDetail.test.js similarity index 100% rename from awx/ui_next/src/components/ErrorDetail/ErrorDetail.test.jsx rename to awx/ui_next/src/components/ErrorDetail/ErrorDetail.test.js diff --git a/awx/ui_next/src/components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx b/awx/ui_next/src/components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js similarity index 100% rename from awx/ui_next/src/components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx rename to awx/ui_next/src/components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.js diff --git a/awx/ui_next/src/components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.test.jsx b/awx/ui_next/src/components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.test.js similarity index 100% rename from awx/ui_next/src/components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.test.jsx rename to awx/ui_next/src/components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.test.js diff --git a/awx/ui_next/src/components/ExpandCollapse/ExpandCollapse.jsx b/awx/ui_next/src/components/ExpandCollapse/ExpandCollapse.js similarity index 100% rename from awx/ui_next/src/components/ExpandCollapse/ExpandCollapse.jsx rename to awx/ui_next/src/components/ExpandCollapse/ExpandCollapse.js diff --git a/awx/ui_next/src/components/ExpandCollapse/ExpandCollapse.test.jsx b/awx/ui_next/src/components/ExpandCollapse/ExpandCollapse.test.js similarity index 100% rename from awx/ui_next/src/components/ExpandCollapse/ExpandCollapse.test.jsx rename to awx/ui_next/src/components/ExpandCollapse/ExpandCollapse.test.js diff --git a/awx/ui_next/src/components/FieldWithPrompt/FieldWithPrompt.jsx b/awx/ui_next/src/components/FieldWithPrompt/FieldWithPrompt.js similarity index 100% rename from awx/ui_next/src/components/FieldWithPrompt/FieldWithPrompt.jsx rename to awx/ui_next/src/components/FieldWithPrompt/FieldWithPrompt.js diff --git a/awx/ui_next/src/components/FieldWithPrompt/FieldWithPrompt.test.jsx b/awx/ui_next/src/components/FieldWithPrompt/FieldWithPrompt.test.js similarity index 100% rename from awx/ui_next/src/components/FieldWithPrompt/FieldWithPrompt.test.jsx rename to awx/ui_next/src/components/FieldWithPrompt/FieldWithPrompt.test.js diff --git a/awx/ui_next/src/components/FormActionGroup/FormActionGroup.jsx b/awx/ui_next/src/components/FormActionGroup/FormActionGroup.js similarity index 100% rename from awx/ui_next/src/components/FormActionGroup/FormActionGroup.jsx rename to awx/ui_next/src/components/FormActionGroup/FormActionGroup.js diff --git a/awx/ui_next/src/components/FormActionGroup/FormActionGroup.test.jsx b/awx/ui_next/src/components/FormActionGroup/FormActionGroup.test.js similarity index 100% rename from awx/ui_next/src/components/FormActionGroup/FormActionGroup.test.jsx rename to awx/ui_next/src/components/FormActionGroup/FormActionGroup.test.js diff --git a/awx/ui_next/src/components/FormField/ArrayTextField.jsx b/awx/ui_next/src/components/FormField/ArrayTextField.js similarity index 100% rename from awx/ui_next/src/components/FormField/ArrayTextField.jsx rename to awx/ui_next/src/components/FormField/ArrayTextField.js diff --git a/awx/ui_next/src/components/FormField/CheckboxField.jsx b/awx/ui_next/src/components/FormField/CheckboxField.js similarity index 100% rename from awx/ui_next/src/components/FormField/CheckboxField.jsx rename to awx/ui_next/src/components/FormField/CheckboxField.js diff --git a/awx/ui_next/src/components/FormField/FormField.jsx b/awx/ui_next/src/components/FormField/FormField.js similarity index 100% rename from awx/ui_next/src/components/FormField/FormField.jsx rename to awx/ui_next/src/components/FormField/FormField.js diff --git a/awx/ui_next/src/components/FormField/FormSubmitError.jsx b/awx/ui_next/src/components/FormField/FormSubmitError.js similarity index 100% rename from awx/ui_next/src/components/FormField/FormSubmitError.jsx rename to awx/ui_next/src/components/FormField/FormSubmitError.js diff --git a/awx/ui_next/src/components/FormField/FormSubmitError.test.jsx b/awx/ui_next/src/components/FormField/FormSubmitError.test.js similarity index 100% rename from awx/ui_next/src/components/FormField/FormSubmitError.test.jsx rename to awx/ui_next/src/components/FormField/FormSubmitError.test.js diff --git a/awx/ui_next/src/components/FormField/PasswordField.jsx b/awx/ui_next/src/components/FormField/PasswordField.js similarity index 100% rename from awx/ui_next/src/components/FormField/PasswordField.jsx rename to awx/ui_next/src/components/FormField/PasswordField.js diff --git a/awx/ui_next/src/components/FormField/PasswordField.test.jsx b/awx/ui_next/src/components/FormField/PasswordField.test.js similarity index 100% rename from awx/ui_next/src/components/FormField/PasswordField.test.jsx rename to awx/ui_next/src/components/FormField/PasswordField.test.js diff --git a/awx/ui_next/src/components/FormField/PasswordInput.jsx b/awx/ui_next/src/components/FormField/PasswordInput.js similarity index 100% rename from awx/ui_next/src/components/FormField/PasswordInput.jsx rename to awx/ui_next/src/components/FormField/PasswordInput.js diff --git a/awx/ui_next/src/components/FormField/PasswordInput.test.jsx b/awx/ui_next/src/components/FormField/PasswordInput.test.js similarity index 100% rename from awx/ui_next/src/components/FormField/PasswordInput.test.jsx rename to awx/ui_next/src/components/FormField/PasswordInput.test.js diff --git a/awx/ui_next/src/components/FormLayout/FormLayout.jsx b/awx/ui_next/src/components/FormLayout/FormLayout.js similarity index 100% rename from awx/ui_next/src/components/FormLayout/FormLayout.jsx rename to awx/ui_next/src/components/FormLayout/FormLayout.js diff --git a/awx/ui_next/src/components/FullPage/FullPage.jsx b/awx/ui_next/src/components/FullPage/FullPage.js similarity index 100% rename from awx/ui_next/src/components/FullPage/FullPage.jsx rename to awx/ui_next/src/components/FullPage/FullPage.js diff --git a/awx/ui_next/src/components/HostForm/HostForm.jsx b/awx/ui_next/src/components/HostForm/HostForm.js similarity index 100% rename from awx/ui_next/src/components/HostForm/HostForm.jsx rename to awx/ui_next/src/components/HostForm/HostForm.js diff --git a/awx/ui_next/src/components/HostForm/HostForm.test.jsx b/awx/ui_next/src/components/HostForm/HostForm.test.js similarity index 100% rename from awx/ui_next/src/components/HostForm/HostForm.test.jsx rename to awx/ui_next/src/components/HostForm/HostForm.test.js diff --git a/awx/ui_next/src/components/HostToggle/HostToggle.jsx b/awx/ui_next/src/components/HostToggle/HostToggle.js similarity index 100% rename from awx/ui_next/src/components/HostToggle/HostToggle.jsx rename to awx/ui_next/src/components/HostToggle/HostToggle.js diff --git a/awx/ui_next/src/components/HostToggle/HostToggle.test.jsx b/awx/ui_next/src/components/HostToggle/HostToggle.test.js similarity index 100% rename from awx/ui_next/src/components/HostToggle/HostToggle.test.jsx rename to awx/ui_next/src/components/HostToggle/HostToggle.test.js diff --git a/awx/ui_next/src/components/InstanceToggle/InstanceToggle.jsx b/awx/ui_next/src/components/InstanceToggle/InstanceToggle.js similarity index 100% rename from awx/ui_next/src/components/InstanceToggle/InstanceToggle.jsx rename to awx/ui_next/src/components/InstanceToggle/InstanceToggle.js diff --git a/awx/ui_next/src/components/InstanceToggle/InstanceToggle.test.jsx b/awx/ui_next/src/components/InstanceToggle/InstanceToggle.test.js similarity index 100% rename from awx/ui_next/src/components/InstanceToggle/InstanceToggle.test.jsx rename to awx/ui_next/src/components/InstanceToggle/InstanceToggle.test.js diff --git a/awx/ui_next/src/components/JobCancelButton/JobCancelButton.jsx b/awx/ui_next/src/components/JobCancelButton/JobCancelButton.js similarity index 100% rename from awx/ui_next/src/components/JobCancelButton/JobCancelButton.jsx rename to awx/ui_next/src/components/JobCancelButton/JobCancelButton.js diff --git a/awx/ui_next/src/components/JobCancelButton/JobCancelButton.test.jsx b/awx/ui_next/src/components/JobCancelButton/JobCancelButton.test.js similarity index 100% rename from awx/ui_next/src/components/JobCancelButton/JobCancelButton.test.jsx rename to awx/ui_next/src/components/JobCancelButton/JobCancelButton.test.js diff --git a/awx/ui_next/src/components/JobList/JobList.jsx b/awx/ui_next/src/components/JobList/JobList.js similarity index 100% rename from awx/ui_next/src/components/JobList/JobList.jsx rename to awx/ui_next/src/components/JobList/JobList.js diff --git a/awx/ui_next/src/components/JobList/JobList.test.jsx b/awx/ui_next/src/components/JobList/JobList.test.js similarity index 100% rename from awx/ui_next/src/components/JobList/JobList.test.jsx rename to awx/ui_next/src/components/JobList/JobList.test.js diff --git a/awx/ui_next/src/components/JobList/JobListCancelButton.jsx b/awx/ui_next/src/components/JobList/JobListCancelButton.js similarity index 100% rename from awx/ui_next/src/components/JobList/JobListCancelButton.jsx rename to awx/ui_next/src/components/JobList/JobListCancelButton.js diff --git a/awx/ui_next/src/components/JobList/JobListCancelButton.test.jsx b/awx/ui_next/src/components/JobList/JobListCancelButton.test.js similarity index 100% rename from awx/ui_next/src/components/JobList/JobListCancelButton.test.jsx rename to awx/ui_next/src/components/JobList/JobListCancelButton.test.js diff --git a/awx/ui_next/src/components/JobList/JobListItem.jsx b/awx/ui_next/src/components/JobList/JobListItem.js similarity index 100% rename from awx/ui_next/src/components/JobList/JobListItem.jsx rename to awx/ui_next/src/components/JobList/JobListItem.js diff --git a/awx/ui_next/src/components/JobList/JobListItem.test.jsx b/awx/ui_next/src/components/JobList/JobListItem.test.js similarity index 100% rename from awx/ui_next/src/components/JobList/JobListItem.test.jsx rename to awx/ui_next/src/components/JobList/JobListItem.test.js diff --git a/awx/ui_next/src/components/JobList/useWsJobs.test.jsx b/awx/ui_next/src/components/JobList/useWsJobs.test.js similarity index 100% rename from awx/ui_next/src/components/JobList/useWsJobs.test.jsx rename to awx/ui_next/src/components/JobList/useWsJobs.test.js diff --git a/awx/ui_next/src/components/LaunchButton/LaunchButton.jsx b/awx/ui_next/src/components/LaunchButton/LaunchButton.js similarity index 100% rename from awx/ui_next/src/components/LaunchButton/LaunchButton.jsx rename to awx/ui_next/src/components/LaunchButton/LaunchButton.js diff --git a/awx/ui_next/src/components/LaunchButton/LaunchButton.test.jsx b/awx/ui_next/src/components/LaunchButton/LaunchButton.test.js similarity index 100% rename from awx/ui_next/src/components/LaunchButton/LaunchButton.test.jsx rename to awx/ui_next/src/components/LaunchButton/LaunchButton.test.js diff --git a/awx/ui_next/src/components/LaunchButton/ReLaunchDropDown.jsx b/awx/ui_next/src/components/LaunchButton/ReLaunchDropDown.js similarity index 100% rename from awx/ui_next/src/components/LaunchButton/ReLaunchDropDown.jsx rename to awx/ui_next/src/components/LaunchButton/ReLaunchDropDown.js diff --git a/awx/ui_next/src/components/LaunchButton/ReLaunchDropDown.test.jsx b/awx/ui_next/src/components/LaunchButton/ReLaunchDropDown.test.js similarity index 100% rename from awx/ui_next/src/components/LaunchButton/ReLaunchDropDown.test.jsx rename to awx/ui_next/src/components/LaunchButton/ReLaunchDropDown.test.js diff --git a/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.jsx b/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.jsx rename to awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.js diff --git a/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.test.jsx b/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.test.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.test.jsx rename to awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.test.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/CredentialPasswordsStep.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/CredentialPasswordsStep.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/CredentialPasswordsStep.test.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/CredentialPasswordsStep.test.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/CredentialPasswordsStep.test.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/CredentialPasswordsStep.test.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.test.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.test.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.test.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/CredentialsStep.test.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.test.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.test.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.test.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/InventoryStep.test.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/OtherPromptsStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/OtherPromptsStep.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/OtherPromptsStep.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/OtherPromptsStep.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/OtherPromptsStep.test.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/OtherPromptsStep.test.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/OtherPromptsStep.test.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/OtherPromptsStep.test.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/PreviewStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/PreviewStep.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/PreviewStep.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/PreviewStep.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/PreviewStep.test.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/PreviewStep.test.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/PreviewStep.test.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/PreviewStep.test.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/StepName.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/StepName.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/StepName.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/StepName.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.test.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.test.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.test.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/SurveyStep.test.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/credentialsValidator.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/credentialsValidator.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/credentialsValidator.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/credentialsValidator.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/useCredentialPasswordsStep.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/useCredentialPasswordsStep.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/useCredentialsStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/useCredentialsStep.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/useCredentialsStep.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/useCredentialsStep.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/useInventoryStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/useInventoryStep.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/useInventoryStep.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/useInventoryStep.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/useOtherPromptsStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/useOtherPromptsStep.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/useOtherPromptsStep.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/useOtherPromptsStep.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/usePreviewStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/usePreviewStep.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/usePreviewStep.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/usePreviewStep.js diff --git a/awx/ui_next/src/components/LaunchPrompt/steps/useSurveyStep.jsx b/awx/ui_next/src/components/LaunchPrompt/steps/useSurveyStep.js similarity index 100% rename from awx/ui_next/src/components/LaunchPrompt/steps/useSurveyStep.jsx rename to awx/ui_next/src/components/LaunchPrompt/steps/useSurveyStep.js diff --git a/awx/ui_next/src/components/ListHeader/ListHeader.jsx b/awx/ui_next/src/components/ListHeader/ListHeader.js similarity index 100% rename from awx/ui_next/src/components/ListHeader/ListHeader.jsx rename to awx/ui_next/src/components/ListHeader/ListHeader.js diff --git a/awx/ui_next/src/components/ListHeader/ListHeader.test.jsx b/awx/ui_next/src/components/ListHeader/ListHeader.test.js similarity index 100% rename from awx/ui_next/src/components/ListHeader/ListHeader.test.jsx rename to awx/ui_next/src/components/ListHeader/ListHeader.test.js diff --git a/awx/ui_next/src/components/LoadingSpinner/LoadingSpinner.jsx b/awx/ui_next/src/components/LoadingSpinner/LoadingSpinner.js similarity index 100% rename from awx/ui_next/src/components/LoadingSpinner/LoadingSpinner.jsx rename to awx/ui_next/src/components/LoadingSpinner/LoadingSpinner.js diff --git a/awx/ui_next/src/components/Lookup/ApplicationLookup.jsx b/awx/ui_next/src/components/Lookup/ApplicationLookup.js similarity index 100% rename from awx/ui_next/src/components/Lookup/ApplicationLookup.jsx rename to awx/ui_next/src/components/Lookup/ApplicationLookup.js diff --git a/awx/ui_next/src/components/Lookup/ApplicationLookup.test.jsx b/awx/ui_next/src/components/Lookup/ApplicationLookup.test.js similarity index 100% rename from awx/ui_next/src/components/Lookup/ApplicationLookup.test.jsx rename to awx/ui_next/src/components/Lookup/ApplicationLookup.test.js diff --git a/awx/ui_next/src/components/Lookup/CredentialLookup.jsx b/awx/ui_next/src/components/Lookup/CredentialLookup.js similarity index 100% rename from awx/ui_next/src/components/Lookup/CredentialLookup.jsx rename to awx/ui_next/src/components/Lookup/CredentialLookup.js diff --git a/awx/ui_next/src/components/Lookup/CredentialLookup.test.jsx b/awx/ui_next/src/components/Lookup/CredentialLookup.test.js similarity index 100% rename from awx/ui_next/src/components/Lookup/CredentialLookup.test.jsx rename to awx/ui_next/src/components/Lookup/CredentialLookup.test.js diff --git a/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.jsx b/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.js similarity index 100% rename from awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.jsx rename to awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.js diff --git a/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.test.jsx b/awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.test.js similarity index 100% rename from awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.test.jsx rename to awx/ui_next/src/components/Lookup/ExecutionEnvironmentLookup.test.js diff --git a/awx/ui_next/src/components/Lookup/HostFilterLookup.jsx b/awx/ui_next/src/components/Lookup/HostFilterLookup.js similarity index 100% rename from awx/ui_next/src/components/Lookup/HostFilterLookup.jsx rename to awx/ui_next/src/components/Lookup/HostFilterLookup.js diff --git a/awx/ui_next/src/components/Lookup/HostListItem.jsx b/awx/ui_next/src/components/Lookup/HostListItem.js similarity index 100% rename from awx/ui_next/src/components/Lookup/HostListItem.jsx rename to awx/ui_next/src/components/Lookup/HostListItem.js diff --git a/awx/ui_next/src/components/Lookup/HostListItem.test.jsx b/awx/ui_next/src/components/Lookup/HostListItem.test.js similarity index 100% rename from awx/ui_next/src/components/Lookup/HostListItem.test.jsx rename to awx/ui_next/src/components/Lookup/HostListItem.test.js diff --git a/awx/ui_next/src/components/Lookup/InstanceGroupsLookup.jsx b/awx/ui_next/src/components/Lookup/InstanceGroupsLookup.js similarity index 100% rename from awx/ui_next/src/components/Lookup/InstanceGroupsLookup.jsx rename to awx/ui_next/src/components/Lookup/InstanceGroupsLookup.js diff --git a/awx/ui_next/src/components/Lookup/InventoryLookup.jsx b/awx/ui_next/src/components/Lookup/InventoryLookup.js similarity index 100% rename from awx/ui_next/src/components/Lookup/InventoryLookup.jsx rename to awx/ui_next/src/components/Lookup/InventoryLookup.js diff --git a/awx/ui_next/src/components/Lookup/InventoryLookup.test.jsx b/awx/ui_next/src/components/Lookup/InventoryLookup.test.js similarity index 100% rename from awx/ui_next/src/components/Lookup/InventoryLookup.test.jsx rename to awx/ui_next/src/components/Lookup/InventoryLookup.test.js diff --git a/awx/ui_next/src/components/Lookup/Lookup.jsx b/awx/ui_next/src/components/Lookup/Lookup.js similarity index 100% rename from awx/ui_next/src/components/Lookup/Lookup.jsx rename to awx/ui_next/src/components/Lookup/Lookup.js diff --git a/awx/ui_next/src/components/Lookup/Lookup.test.jsx b/awx/ui_next/src/components/Lookup/Lookup.test.js similarity index 100% rename from awx/ui_next/src/components/Lookup/Lookup.test.jsx rename to awx/ui_next/src/components/Lookup/Lookup.test.js diff --git a/awx/ui_next/src/components/Lookup/MultiCredentialsLookup.jsx b/awx/ui_next/src/components/Lookup/MultiCredentialsLookup.js similarity index 100% rename from awx/ui_next/src/components/Lookup/MultiCredentialsLookup.jsx rename to awx/ui_next/src/components/Lookup/MultiCredentialsLookup.js diff --git a/awx/ui_next/src/components/Lookup/MultiCredentialsLookup.test.jsx b/awx/ui_next/src/components/Lookup/MultiCredentialsLookup.test.js similarity index 100% rename from awx/ui_next/src/components/Lookup/MultiCredentialsLookup.test.jsx rename to awx/ui_next/src/components/Lookup/MultiCredentialsLookup.test.js diff --git a/awx/ui_next/src/components/Lookup/OrganizationLookup.jsx b/awx/ui_next/src/components/Lookup/OrganizationLookup.js similarity index 100% rename from awx/ui_next/src/components/Lookup/OrganizationLookup.jsx rename to awx/ui_next/src/components/Lookup/OrganizationLookup.js diff --git a/awx/ui_next/src/components/Lookup/OrganizationLookup.test.jsx b/awx/ui_next/src/components/Lookup/OrganizationLookup.test.js similarity index 100% rename from awx/ui_next/src/components/Lookup/OrganizationLookup.test.jsx rename to awx/ui_next/src/components/Lookup/OrganizationLookup.test.js diff --git a/awx/ui_next/src/components/Lookup/ProjectLookup.jsx b/awx/ui_next/src/components/Lookup/ProjectLookup.js similarity index 100% rename from awx/ui_next/src/components/Lookup/ProjectLookup.jsx rename to awx/ui_next/src/components/Lookup/ProjectLookup.js diff --git a/awx/ui_next/src/components/Lookup/ProjectLookup.test.jsx b/awx/ui_next/src/components/Lookup/ProjectLookup.test.js similarity index 100% rename from awx/ui_next/src/components/Lookup/ProjectLookup.test.jsx rename to awx/ui_next/src/components/Lookup/ProjectLookup.test.js diff --git a/awx/ui_next/src/components/Lookup/shared/HostFilterUtils.jsx b/awx/ui_next/src/components/Lookup/shared/HostFilterUtils.js similarity index 100% rename from awx/ui_next/src/components/Lookup/shared/HostFilterUtils.jsx rename to awx/ui_next/src/components/Lookup/shared/HostFilterUtils.js diff --git a/awx/ui_next/src/components/Lookup/shared/HostFilterUtils.test.jsx b/awx/ui_next/src/components/Lookup/shared/HostFilterUtils.test.js similarity index 100% rename from awx/ui_next/src/components/Lookup/shared/HostFilterUtils.test.jsx rename to awx/ui_next/src/components/Lookup/shared/HostFilterUtils.test.js diff --git a/awx/ui_next/src/components/Lookup/shared/LookupErrorMessage.jsx b/awx/ui_next/src/components/Lookup/shared/LookupErrorMessage.js similarity index 100% rename from awx/ui_next/src/components/Lookup/shared/LookupErrorMessage.jsx rename to awx/ui_next/src/components/Lookup/shared/LookupErrorMessage.js diff --git a/awx/ui_next/src/components/MultiButtonToggle/ButtonGroup.jsx b/awx/ui_next/src/components/MultiButtonToggle/ButtonGroup.js similarity index 100% rename from awx/ui_next/src/components/MultiButtonToggle/ButtonGroup.jsx rename to awx/ui_next/src/components/MultiButtonToggle/ButtonGroup.js diff --git a/awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.jsx b/awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.js similarity index 100% rename from awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.jsx rename to awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.js diff --git a/awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.test.jsx b/awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.test.js similarity index 100% rename from awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.test.jsx rename to awx/ui_next/src/components/MultiButtonToggle/MultiButtonToggle.test.js diff --git a/awx/ui_next/src/components/MultiSelect/TagMultiSelect.jsx b/awx/ui_next/src/components/MultiSelect/TagMultiSelect.js similarity index 100% rename from awx/ui_next/src/components/MultiSelect/TagMultiSelect.jsx rename to awx/ui_next/src/components/MultiSelect/TagMultiSelect.js diff --git a/awx/ui_next/src/components/MultiSelect/TagMultiSelect.test.jsx b/awx/ui_next/src/components/MultiSelect/TagMultiSelect.test.js similarity index 100% rename from awx/ui_next/src/components/MultiSelect/TagMultiSelect.test.jsx rename to awx/ui_next/src/components/MultiSelect/TagMultiSelect.test.js diff --git a/awx/ui_next/src/components/NotificationList/NotificationList.jsx b/awx/ui_next/src/components/NotificationList/NotificationList.js similarity index 100% rename from awx/ui_next/src/components/NotificationList/NotificationList.jsx rename to awx/ui_next/src/components/NotificationList/NotificationList.js diff --git a/awx/ui_next/src/components/NotificationList/NotificationList.test.jsx b/awx/ui_next/src/components/NotificationList/NotificationList.test.js similarity index 100% rename from awx/ui_next/src/components/NotificationList/NotificationList.test.jsx rename to awx/ui_next/src/components/NotificationList/NotificationList.test.js diff --git a/awx/ui_next/src/components/NotificationList/NotificationListItem.jsx b/awx/ui_next/src/components/NotificationList/NotificationListItem.js similarity index 100% rename from awx/ui_next/src/components/NotificationList/NotificationListItem.jsx rename to awx/ui_next/src/components/NotificationList/NotificationListItem.js diff --git a/awx/ui_next/src/components/NotificationList/NotificationListItem.test.jsx b/awx/ui_next/src/components/NotificationList/NotificationListItem.test.js similarity index 100% rename from awx/ui_next/src/components/NotificationList/NotificationListItem.test.jsx rename to awx/ui_next/src/components/NotificationList/NotificationListItem.test.js diff --git a/awx/ui_next/src/components/OptionsList/OptionsList.jsx b/awx/ui_next/src/components/OptionsList/OptionsList.js similarity index 100% rename from awx/ui_next/src/components/OptionsList/OptionsList.jsx rename to awx/ui_next/src/components/OptionsList/OptionsList.js diff --git a/awx/ui_next/src/components/OptionsList/OptionsList.test.jsx b/awx/ui_next/src/components/OptionsList/OptionsList.test.js similarity index 100% rename from awx/ui_next/src/components/OptionsList/OptionsList.test.jsx rename to awx/ui_next/src/components/OptionsList/OptionsList.test.js diff --git a/awx/ui_next/src/components/PaginatedTable/ActionItem.jsx b/awx/ui_next/src/components/PaginatedTable/ActionItem.js similarity index 100% rename from awx/ui_next/src/components/PaginatedTable/ActionItem.jsx rename to awx/ui_next/src/components/PaginatedTable/ActionItem.js diff --git a/awx/ui_next/src/components/PaginatedTable/ActionItem.test.jsx b/awx/ui_next/src/components/PaginatedTable/ActionItem.test.js similarity index 100% rename from awx/ui_next/src/components/PaginatedTable/ActionItem.test.jsx rename to awx/ui_next/src/components/PaginatedTable/ActionItem.test.js diff --git a/awx/ui_next/src/components/PaginatedTable/ActionsTd.jsx b/awx/ui_next/src/components/PaginatedTable/ActionsTd.js similarity index 100% rename from awx/ui_next/src/components/PaginatedTable/ActionsTd.jsx rename to awx/ui_next/src/components/PaginatedTable/ActionsTd.js diff --git a/awx/ui_next/src/components/PaginatedTable/HeaderRow.jsx b/awx/ui_next/src/components/PaginatedTable/HeaderRow.js similarity index 100% rename from awx/ui_next/src/components/PaginatedTable/HeaderRow.jsx rename to awx/ui_next/src/components/PaginatedTable/HeaderRow.js diff --git a/awx/ui_next/src/components/PaginatedTable/HeaderRow.test.jsx b/awx/ui_next/src/components/PaginatedTable/HeaderRow.test.js similarity index 100% rename from awx/ui_next/src/components/PaginatedTable/HeaderRow.test.jsx rename to awx/ui_next/src/components/PaginatedTable/HeaderRow.test.js diff --git a/awx/ui_next/src/components/PaginatedTable/PaginatedTable.jsx b/awx/ui_next/src/components/PaginatedTable/PaginatedTable.js similarity index 100% rename from awx/ui_next/src/components/PaginatedTable/PaginatedTable.jsx rename to awx/ui_next/src/components/PaginatedTable/PaginatedTable.js diff --git a/awx/ui_next/src/components/PaginatedTable/PaginatedTable.test.jsx b/awx/ui_next/src/components/PaginatedTable/PaginatedTable.test.js similarity index 100% rename from awx/ui_next/src/components/PaginatedTable/PaginatedTable.test.jsx rename to awx/ui_next/src/components/PaginatedTable/PaginatedTable.test.js diff --git a/awx/ui_next/src/components/PaginatedTable/ToolbarAddButton.jsx b/awx/ui_next/src/components/PaginatedTable/ToolbarAddButton.js similarity index 100% rename from awx/ui_next/src/components/PaginatedTable/ToolbarAddButton.jsx rename to awx/ui_next/src/components/PaginatedTable/ToolbarAddButton.js diff --git a/awx/ui_next/src/components/PaginatedTable/ToolbarAddButton.test.jsx b/awx/ui_next/src/components/PaginatedTable/ToolbarAddButton.test.js similarity index 100% rename from awx/ui_next/src/components/PaginatedTable/ToolbarAddButton.test.jsx rename to awx/ui_next/src/components/PaginatedTable/ToolbarAddButton.test.js diff --git a/awx/ui_next/src/components/PaginatedTable/ToolbarDeleteButton.jsx b/awx/ui_next/src/components/PaginatedTable/ToolbarDeleteButton.js similarity index 100% rename from awx/ui_next/src/components/PaginatedTable/ToolbarDeleteButton.jsx rename to awx/ui_next/src/components/PaginatedTable/ToolbarDeleteButton.js diff --git a/awx/ui_next/src/components/PaginatedTable/ToolbarDeleteButton.test.jsx b/awx/ui_next/src/components/PaginatedTable/ToolbarDeleteButton.test.js similarity index 100% rename from awx/ui_next/src/components/PaginatedTable/ToolbarDeleteButton.test.jsx rename to awx/ui_next/src/components/PaginatedTable/ToolbarDeleteButton.test.js diff --git a/awx/ui_next/src/components/Pagination/Pagination.jsx b/awx/ui_next/src/components/Pagination/Pagination.js similarity index 100% rename from awx/ui_next/src/components/Pagination/Pagination.jsx rename to awx/ui_next/src/components/Pagination/Pagination.js diff --git a/awx/ui_next/src/components/Pagination/Pagination.test.jsx b/awx/ui_next/src/components/Pagination/Pagination.test.js similarity index 100% rename from awx/ui_next/src/components/Pagination/Pagination.test.jsx rename to awx/ui_next/src/components/Pagination/Pagination.test.js diff --git a/awx/ui_next/src/components/Popover/Popover.jsx b/awx/ui_next/src/components/Popover/Popover.js similarity index 100% rename from awx/ui_next/src/components/Popover/Popover.jsx rename to awx/ui_next/src/components/Popover/Popover.js diff --git a/awx/ui_next/src/components/PromptDetail/PromptDetail.jsx b/awx/ui_next/src/components/PromptDetail/PromptDetail.js similarity index 100% rename from awx/ui_next/src/components/PromptDetail/PromptDetail.jsx rename to awx/ui_next/src/components/PromptDetail/PromptDetail.js diff --git a/awx/ui_next/src/components/PromptDetail/PromptDetail.test.jsx b/awx/ui_next/src/components/PromptDetail/PromptDetail.test.js similarity index 100% rename from awx/ui_next/src/components/PromptDetail/PromptDetail.test.jsx rename to awx/ui_next/src/components/PromptDetail/PromptDetail.test.js diff --git a/awx/ui_next/src/components/PromptDetail/PromptInventorySourceDetail.jsx b/awx/ui_next/src/components/PromptDetail/PromptInventorySourceDetail.js similarity index 100% rename from awx/ui_next/src/components/PromptDetail/PromptInventorySourceDetail.jsx rename to awx/ui_next/src/components/PromptDetail/PromptInventorySourceDetail.js diff --git a/awx/ui_next/src/components/PromptDetail/PromptInventorySourceDetail.test.jsx b/awx/ui_next/src/components/PromptDetail/PromptInventorySourceDetail.test.js similarity index 100% rename from awx/ui_next/src/components/PromptDetail/PromptInventorySourceDetail.test.jsx rename to awx/ui_next/src/components/PromptDetail/PromptInventorySourceDetail.test.js diff --git a/awx/ui_next/src/components/PromptDetail/PromptJobTemplateDetail.jsx b/awx/ui_next/src/components/PromptDetail/PromptJobTemplateDetail.js similarity index 100% rename from awx/ui_next/src/components/PromptDetail/PromptJobTemplateDetail.jsx rename to awx/ui_next/src/components/PromptDetail/PromptJobTemplateDetail.js diff --git a/awx/ui_next/src/components/PromptDetail/PromptJobTemplateDetail.test.jsx b/awx/ui_next/src/components/PromptDetail/PromptJobTemplateDetail.test.js similarity index 100% rename from awx/ui_next/src/components/PromptDetail/PromptJobTemplateDetail.test.jsx rename to awx/ui_next/src/components/PromptDetail/PromptJobTemplateDetail.test.js diff --git a/awx/ui_next/src/components/PromptDetail/PromptProjectDetail.jsx b/awx/ui_next/src/components/PromptDetail/PromptProjectDetail.js similarity index 100% rename from awx/ui_next/src/components/PromptDetail/PromptProjectDetail.jsx rename to awx/ui_next/src/components/PromptDetail/PromptProjectDetail.js diff --git a/awx/ui_next/src/components/PromptDetail/PromptProjectDetail.test.jsx b/awx/ui_next/src/components/PromptDetail/PromptProjectDetail.test.js similarity index 100% rename from awx/ui_next/src/components/PromptDetail/PromptProjectDetail.test.jsx rename to awx/ui_next/src/components/PromptDetail/PromptProjectDetail.test.js diff --git a/awx/ui_next/src/components/PromptDetail/PromptWFJobTemplateDetail.jsx b/awx/ui_next/src/components/PromptDetail/PromptWFJobTemplateDetail.js similarity index 100% rename from awx/ui_next/src/components/PromptDetail/PromptWFJobTemplateDetail.jsx rename to awx/ui_next/src/components/PromptDetail/PromptWFJobTemplateDetail.js diff --git a/awx/ui_next/src/components/PromptDetail/PromptWFJobTemplateDetail.test.jsx b/awx/ui_next/src/components/PromptDetail/PromptWFJobTemplateDetail.test.js similarity index 100% rename from awx/ui_next/src/components/PromptDetail/PromptWFJobTemplateDetail.test.jsx rename to awx/ui_next/src/components/PromptDetail/PromptWFJobTemplateDetail.test.js diff --git a/awx/ui_next/src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx b/awx/ui_next/src/components/ResourceAccessList/DeleteRoleConfirmationModal.js similarity index 100% rename from awx/ui_next/src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx rename to awx/ui_next/src/components/ResourceAccessList/DeleteRoleConfirmationModal.js diff --git a/awx/ui_next/src/components/ResourceAccessList/DeleteRoleConfirmationModal.test.jsx b/awx/ui_next/src/components/ResourceAccessList/DeleteRoleConfirmationModal.test.js similarity index 100% rename from awx/ui_next/src/components/ResourceAccessList/DeleteRoleConfirmationModal.test.jsx rename to awx/ui_next/src/components/ResourceAccessList/DeleteRoleConfirmationModal.test.js diff --git a/awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.jsx b/awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.js similarity index 100% rename from awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.jsx rename to awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.js diff --git a/awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.test.jsx b/awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.test.js similarity index 100% rename from awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.test.jsx rename to awx/ui_next/src/components/ResourceAccessList/ResourceAccessList.test.js diff --git a/awx/ui_next/src/components/ResourceAccessList/ResourceAccessListItem.jsx b/awx/ui_next/src/components/ResourceAccessList/ResourceAccessListItem.js similarity index 100% rename from awx/ui_next/src/components/ResourceAccessList/ResourceAccessListItem.jsx rename to awx/ui_next/src/components/ResourceAccessList/ResourceAccessListItem.js diff --git a/awx/ui_next/src/components/ResourceAccessList/ResourceAccessListItem.test.jsx b/awx/ui_next/src/components/ResourceAccessList/ResourceAccessListItem.test.js similarity index 100% rename from awx/ui_next/src/components/ResourceAccessList/ResourceAccessListItem.test.jsx rename to awx/ui_next/src/components/ResourceAccessList/ResourceAccessListItem.test.js diff --git a/awx/ui_next/src/components/RoutedTabs/RoutedTabs.jsx b/awx/ui_next/src/components/RoutedTabs/RoutedTabs.js similarity index 100% rename from awx/ui_next/src/components/RoutedTabs/RoutedTabs.jsx rename to awx/ui_next/src/components/RoutedTabs/RoutedTabs.js diff --git a/awx/ui_next/src/components/RoutedTabs/RoutedTabs.test.jsx b/awx/ui_next/src/components/RoutedTabs/RoutedTabs.test.js similarity index 100% rename from awx/ui_next/src/components/RoutedTabs/RoutedTabs.test.jsx rename to awx/ui_next/src/components/RoutedTabs/RoutedTabs.test.js diff --git a/awx/ui_next/src/components/Schedule/Schedule.jsx b/awx/ui_next/src/components/Schedule/Schedule.js similarity index 100% rename from awx/ui_next/src/components/Schedule/Schedule.jsx rename to awx/ui_next/src/components/Schedule/Schedule.js diff --git a/awx/ui_next/src/components/Schedule/Schedule.test.jsx b/awx/ui_next/src/components/Schedule/Schedule.test.js similarity index 100% rename from awx/ui_next/src/components/Schedule/Schedule.test.jsx rename to awx/ui_next/src/components/Schedule/Schedule.test.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleAdd/ScheduleAdd.jsx b/awx/ui_next/src/components/Schedule/ScheduleAdd/ScheduleAdd.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleAdd/ScheduleAdd.jsx rename to awx/ui_next/src/components/Schedule/ScheduleAdd/ScheduleAdd.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleAdd/ScheduleAdd.test.jsx b/awx/ui_next/src/components/Schedule/ScheduleAdd/ScheduleAdd.test.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleAdd/ScheduleAdd.test.jsx rename to awx/ui_next/src/components/Schedule/ScheduleAdd/ScheduleAdd.test.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx b/awx/ui_next/src/components/Schedule/ScheduleDetail/ScheduleDetail.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx rename to awx/ui_next/src/components/Schedule/ScheduleDetail/ScheduleDetail.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleDetail/ScheduleDetail.test.jsx b/awx/ui_next/src/components/Schedule/ScheduleDetail/ScheduleDetail.test.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleDetail/ScheduleDetail.test.jsx rename to awx/ui_next/src/components/Schedule/ScheduleDetail/ScheduleDetail.test.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleEdit/ScheduleEdit.jsx b/awx/ui_next/src/components/Schedule/ScheduleEdit/ScheduleEdit.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleEdit/ScheduleEdit.jsx rename to awx/ui_next/src/components/Schedule/ScheduleEdit/ScheduleEdit.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleEdit/ScheduleEdit.test.jsx b/awx/ui_next/src/components/Schedule/ScheduleEdit/ScheduleEdit.test.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleEdit/ScheduleEdit.test.jsx rename to awx/ui_next/src/components/Schedule/ScheduleEdit/ScheduleEdit.test.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleList/ScheduleList.jsx b/awx/ui_next/src/components/Schedule/ScheduleList/ScheduleList.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleList/ScheduleList.jsx rename to awx/ui_next/src/components/Schedule/ScheduleList/ScheduleList.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleList/ScheduleList.test.jsx b/awx/ui_next/src/components/Schedule/ScheduleList/ScheduleList.test.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleList/ScheduleList.test.jsx rename to awx/ui_next/src/components/Schedule/ScheduleList/ScheduleList.test.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleList/ScheduleListItem.jsx b/awx/ui_next/src/components/Schedule/ScheduleList/ScheduleListItem.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleList/ScheduleListItem.jsx rename to awx/ui_next/src/components/Schedule/ScheduleList/ScheduleListItem.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleList/ScheduleListItem.test.jsx b/awx/ui_next/src/components/Schedule/ScheduleList/ScheduleListItem.test.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleList/ScheduleListItem.test.jsx rename to awx/ui_next/src/components/Schedule/ScheduleList/ScheduleListItem.test.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx b/awx/ui_next/src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx rename to awx/ui_next/src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.test.jsx b/awx/ui_next/src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.test.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.test.jsx rename to awx/ui_next/src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.test.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx b/awx/ui_next/src/components/Schedule/ScheduleToggle/ScheduleToggle.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx rename to awx/ui_next/src/components/Schedule/ScheduleToggle/ScheduleToggle.js diff --git a/awx/ui_next/src/components/Schedule/ScheduleToggle/ScheduleToggle.test.jsx b/awx/ui_next/src/components/Schedule/ScheduleToggle/ScheduleToggle.test.js similarity index 100% rename from awx/ui_next/src/components/Schedule/ScheduleToggle/ScheduleToggle.test.jsx rename to awx/ui_next/src/components/Schedule/ScheduleToggle/ScheduleToggle.test.js diff --git a/awx/ui_next/src/components/Schedule/Schedules.jsx b/awx/ui_next/src/components/Schedule/Schedules.js similarity index 100% rename from awx/ui_next/src/components/Schedule/Schedules.jsx rename to awx/ui_next/src/components/Schedule/Schedules.js diff --git a/awx/ui_next/src/components/Schedule/Schedules.test.jsx b/awx/ui_next/src/components/Schedule/Schedules.test.js similarity index 100% rename from awx/ui_next/src/components/Schedule/Schedules.test.jsx rename to awx/ui_next/src/components/Schedule/Schedules.test.js diff --git a/awx/ui_next/src/components/Schedule/shared/DateTimePicker.jsx b/awx/ui_next/src/components/Schedule/shared/DateTimePicker.js similarity index 100% rename from awx/ui_next/src/components/Schedule/shared/DateTimePicker.jsx rename to awx/ui_next/src/components/Schedule/shared/DateTimePicker.js diff --git a/awx/ui_next/src/components/Schedule/shared/DateTimePicker.test.jsx b/awx/ui_next/src/components/Schedule/shared/DateTimePicker.test.js similarity index 100% rename from awx/ui_next/src/components/Schedule/shared/DateTimePicker.test.jsx rename to awx/ui_next/src/components/Schedule/shared/DateTimePicker.test.js diff --git a/awx/ui_next/src/components/Schedule/shared/FrequencyDetailSubform.jsx b/awx/ui_next/src/components/Schedule/shared/FrequencyDetailSubform.js similarity index 100% rename from awx/ui_next/src/components/Schedule/shared/FrequencyDetailSubform.jsx rename to awx/ui_next/src/components/Schedule/shared/FrequencyDetailSubform.js diff --git a/awx/ui_next/src/components/Schedule/shared/ScheduleForm.jsx b/awx/ui_next/src/components/Schedule/shared/ScheduleForm.js similarity index 100% rename from awx/ui_next/src/components/Schedule/shared/ScheduleForm.jsx rename to awx/ui_next/src/components/Schedule/shared/ScheduleForm.js diff --git a/awx/ui_next/src/components/Schedule/shared/ScheduleForm.test.jsx b/awx/ui_next/src/components/Schedule/shared/ScheduleForm.test.js similarity index 100% rename from awx/ui_next/src/components/Schedule/shared/ScheduleForm.test.jsx rename to awx/ui_next/src/components/Schedule/shared/ScheduleForm.test.js diff --git a/awx/ui_next/src/components/Schedule/shared/SchedulePromptableFields.jsx b/awx/ui_next/src/components/Schedule/shared/SchedulePromptableFields.js similarity index 100% rename from awx/ui_next/src/components/Schedule/shared/SchedulePromptableFields.jsx rename to awx/ui_next/src/components/Schedule/shared/SchedulePromptableFields.js diff --git a/awx/ui_next/src/components/ScreenHeader/ScreenHeader.jsx b/awx/ui_next/src/components/ScreenHeader/ScreenHeader.js similarity index 100% rename from awx/ui_next/src/components/ScreenHeader/ScreenHeader.jsx rename to awx/ui_next/src/components/ScreenHeader/ScreenHeader.js diff --git a/awx/ui_next/src/components/ScreenHeader/ScreenHeader.test.jsx b/awx/ui_next/src/components/ScreenHeader/ScreenHeader.test.js similarity index 100% rename from awx/ui_next/src/components/ScreenHeader/ScreenHeader.test.jsx rename to awx/ui_next/src/components/ScreenHeader/ScreenHeader.test.js diff --git a/awx/ui_next/src/components/Search/AdvancedSearch.jsx b/awx/ui_next/src/components/Search/AdvancedSearch.js similarity index 100% rename from awx/ui_next/src/components/Search/AdvancedSearch.jsx rename to awx/ui_next/src/components/Search/AdvancedSearch.js diff --git a/awx/ui_next/src/components/Search/AdvancedSearch.test.jsx b/awx/ui_next/src/components/Search/AdvancedSearch.test.js similarity index 100% rename from awx/ui_next/src/components/Search/AdvancedSearch.test.jsx rename to awx/ui_next/src/components/Search/AdvancedSearch.test.js diff --git a/awx/ui_next/src/components/Search/Search.jsx b/awx/ui_next/src/components/Search/Search.js similarity index 100% rename from awx/ui_next/src/components/Search/Search.jsx rename to awx/ui_next/src/components/Search/Search.js diff --git a/awx/ui_next/src/components/Search/Search.test.jsx b/awx/ui_next/src/components/Search/Search.test.js similarity index 100% rename from awx/ui_next/src/components/Search/Search.test.jsx rename to awx/ui_next/src/components/Search/Search.test.js diff --git a/awx/ui_next/src/components/SelectableCard/SelectableCard.jsx b/awx/ui_next/src/components/SelectableCard/SelectableCard.js similarity index 100% rename from awx/ui_next/src/components/SelectableCard/SelectableCard.jsx rename to awx/ui_next/src/components/SelectableCard/SelectableCard.js diff --git a/awx/ui_next/src/components/SelectableCard/SelectableCard.test.jsx b/awx/ui_next/src/components/SelectableCard/SelectableCard.test.js similarity index 100% rename from awx/ui_next/src/components/SelectableCard/SelectableCard.test.jsx rename to awx/ui_next/src/components/SelectableCard/SelectableCard.test.js diff --git a/awx/ui_next/src/components/SelectedList/DraggableSelectedList.jsx b/awx/ui_next/src/components/SelectedList/DraggableSelectedList.js similarity index 100% rename from awx/ui_next/src/components/SelectedList/DraggableSelectedList.jsx rename to awx/ui_next/src/components/SelectedList/DraggableSelectedList.js diff --git a/awx/ui_next/src/components/SelectedList/DraggableSelectedList.test.jsx b/awx/ui_next/src/components/SelectedList/DraggableSelectedList.test.js similarity index 100% rename from awx/ui_next/src/components/SelectedList/DraggableSelectedList.test.jsx rename to awx/ui_next/src/components/SelectedList/DraggableSelectedList.test.js diff --git a/awx/ui_next/src/components/SelectedList/SelectedList.jsx b/awx/ui_next/src/components/SelectedList/SelectedList.js similarity index 100% rename from awx/ui_next/src/components/SelectedList/SelectedList.jsx rename to awx/ui_next/src/components/SelectedList/SelectedList.js diff --git a/awx/ui_next/src/components/SelectedList/SelectedList.test.jsx b/awx/ui_next/src/components/SelectedList/SelectedList.test.js similarity index 100% rename from awx/ui_next/src/components/SelectedList/SelectedList.test.jsx rename to awx/ui_next/src/components/SelectedList/SelectedList.test.js diff --git a/awx/ui_next/src/components/Sort/Sort.jsx b/awx/ui_next/src/components/Sort/Sort.js similarity index 100% rename from awx/ui_next/src/components/Sort/Sort.jsx rename to awx/ui_next/src/components/Sort/Sort.js diff --git a/awx/ui_next/src/components/Sort/Sort.test.jsx b/awx/ui_next/src/components/Sort/Sort.test.js similarity index 100% rename from awx/ui_next/src/components/Sort/Sort.test.jsx rename to awx/ui_next/src/components/Sort/Sort.test.js diff --git a/awx/ui_next/src/components/Sparkline/Sparkline.jsx b/awx/ui_next/src/components/Sparkline/Sparkline.js similarity index 100% rename from awx/ui_next/src/components/Sparkline/Sparkline.jsx rename to awx/ui_next/src/components/Sparkline/Sparkline.js diff --git a/awx/ui_next/src/components/Sparkline/Sparkline.test.jsx b/awx/ui_next/src/components/Sparkline/Sparkline.test.js similarity index 100% rename from awx/ui_next/src/components/Sparkline/Sparkline.test.jsx rename to awx/ui_next/src/components/Sparkline/Sparkline.test.js diff --git a/awx/ui_next/src/components/StatusIcon/StatusIcon.jsx b/awx/ui_next/src/components/StatusIcon/StatusIcon.js similarity index 100% rename from awx/ui_next/src/components/StatusIcon/StatusIcon.jsx rename to awx/ui_next/src/components/StatusIcon/StatusIcon.js diff --git a/awx/ui_next/src/components/StatusIcon/StatusIcon.test.jsx b/awx/ui_next/src/components/StatusIcon/StatusIcon.test.js similarity index 100% rename from awx/ui_next/src/components/StatusIcon/StatusIcon.test.jsx rename to awx/ui_next/src/components/StatusIcon/StatusIcon.test.js diff --git a/awx/ui_next/src/components/StatusLabel/StatusLabel.jsx b/awx/ui_next/src/components/StatusLabel/StatusLabel.js similarity index 100% rename from awx/ui_next/src/components/StatusLabel/StatusLabel.jsx rename to awx/ui_next/src/components/StatusLabel/StatusLabel.js diff --git a/awx/ui_next/src/components/StatusLabel/StatusLabel.test.jsx b/awx/ui_next/src/components/StatusLabel/StatusLabel.test.js similarity index 100% rename from awx/ui_next/src/components/StatusLabel/StatusLabel.test.jsx rename to awx/ui_next/src/components/StatusLabel/StatusLabel.test.js diff --git a/awx/ui_next/src/components/TemplateList/TemplateList.jsx b/awx/ui_next/src/components/TemplateList/TemplateList.js similarity index 100% rename from awx/ui_next/src/components/TemplateList/TemplateList.jsx rename to awx/ui_next/src/components/TemplateList/TemplateList.js diff --git a/awx/ui_next/src/components/TemplateList/TemplateList.test.jsx b/awx/ui_next/src/components/TemplateList/TemplateList.test.js similarity index 100% rename from awx/ui_next/src/components/TemplateList/TemplateList.test.jsx rename to awx/ui_next/src/components/TemplateList/TemplateList.test.js diff --git a/awx/ui_next/src/components/TemplateList/TemplateListItem.jsx b/awx/ui_next/src/components/TemplateList/TemplateListItem.js similarity index 100% rename from awx/ui_next/src/components/TemplateList/TemplateListItem.jsx rename to awx/ui_next/src/components/TemplateList/TemplateListItem.js diff --git a/awx/ui_next/src/components/TemplateList/TemplateListItem.test.jsx b/awx/ui_next/src/components/TemplateList/TemplateListItem.test.js similarity index 100% rename from awx/ui_next/src/components/TemplateList/TemplateListItem.test.jsx rename to awx/ui_next/src/components/TemplateList/TemplateListItem.test.js diff --git a/awx/ui_next/src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx b/awx/ui_next/src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js similarity index 100% rename from awx/ui_next/src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx rename to awx/ui_next/src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.js diff --git a/awx/ui_next/src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.test.jsx b/awx/ui_next/src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.test.js similarity index 100% rename from awx/ui_next/src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.test.jsx rename to awx/ui_next/src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.test.js diff --git a/awx/ui_next/src/components/Wizard/Wizard.jsx b/awx/ui_next/src/components/Wizard/Wizard.js similarity index 100% rename from awx/ui_next/src/components/Wizard/Wizard.jsx rename to awx/ui_next/src/components/Wizard/Wizard.js diff --git a/awx/ui_next/src/components/Wizard/Wizard.test.jsx b/awx/ui_next/src/components/Wizard/Wizard.test.js similarity index 100% rename from awx/ui_next/src/components/Wizard/Wizard.test.jsx rename to awx/ui_next/src/components/Wizard/Wizard.test.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowActionTooltip.jsx b/awx/ui_next/src/components/Workflow/WorkflowActionTooltip.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowActionTooltip.jsx rename to awx/ui_next/src/components/Workflow/WorkflowActionTooltip.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowActionTooltip.test.jsx b/awx/ui_next/src/components/Workflow/WorkflowActionTooltip.test.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowActionTooltip.test.jsx rename to awx/ui_next/src/components/Workflow/WorkflowActionTooltip.test.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowActionTooltipItem.jsx b/awx/ui_next/src/components/Workflow/WorkflowActionTooltipItem.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowActionTooltipItem.jsx rename to awx/ui_next/src/components/Workflow/WorkflowActionTooltipItem.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowActionTooltipItem.test.jsx b/awx/ui_next/src/components/Workflow/WorkflowActionTooltipItem.test.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowActionTooltipItem.test.jsx rename to awx/ui_next/src/components/Workflow/WorkflowActionTooltipItem.test.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowHelp.jsx b/awx/ui_next/src/components/Workflow/WorkflowHelp.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowHelp.jsx rename to awx/ui_next/src/components/Workflow/WorkflowHelp.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowHelp.test.jsx b/awx/ui_next/src/components/Workflow/WorkflowHelp.test.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowHelp.test.jsx rename to awx/ui_next/src/components/Workflow/WorkflowHelp.test.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowLegend.jsx b/awx/ui_next/src/components/Workflow/WorkflowLegend.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowLegend.jsx rename to awx/ui_next/src/components/Workflow/WorkflowLegend.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowLegend.test.jsx b/awx/ui_next/src/components/Workflow/WorkflowLegend.test.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowLegend.test.jsx rename to awx/ui_next/src/components/Workflow/WorkflowLegend.test.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowLinkHelp.jsx b/awx/ui_next/src/components/Workflow/WorkflowLinkHelp.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowLinkHelp.jsx rename to awx/ui_next/src/components/Workflow/WorkflowLinkHelp.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowLinkHelp.test.jsx b/awx/ui_next/src/components/Workflow/WorkflowLinkHelp.test.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowLinkHelp.test.jsx rename to awx/ui_next/src/components/Workflow/WorkflowLinkHelp.test.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowNodeHelp.jsx b/awx/ui_next/src/components/Workflow/WorkflowNodeHelp.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowNodeHelp.jsx rename to awx/ui_next/src/components/Workflow/WorkflowNodeHelp.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowNodeHelp.test.jsx b/awx/ui_next/src/components/Workflow/WorkflowNodeHelp.test.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowNodeHelp.test.jsx rename to awx/ui_next/src/components/Workflow/WorkflowNodeHelp.test.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowNodeTypeLetter.jsx b/awx/ui_next/src/components/Workflow/WorkflowNodeTypeLetter.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowNodeTypeLetter.jsx rename to awx/ui_next/src/components/Workflow/WorkflowNodeTypeLetter.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowNodeTypeLetter.test.jsx b/awx/ui_next/src/components/Workflow/WorkflowNodeTypeLetter.test.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowNodeTypeLetter.test.jsx rename to awx/ui_next/src/components/Workflow/WorkflowNodeTypeLetter.test.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowStartNode.jsx b/awx/ui_next/src/components/Workflow/WorkflowStartNode.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowStartNode.jsx rename to awx/ui_next/src/components/Workflow/WorkflowStartNode.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowStartNode.test.jsx b/awx/ui_next/src/components/Workflow/WorkflowStartNode.test.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowStartNode.test.jsx rename to awx/ui_next/src/components/Workflow/WorkflowStartNode.test.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowTools.jsx b/awx/ui_next/src/components/Workflow/WorkflowTools.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowTools.jsx rename to awx/ui_next/src/components/Workflow/WorkflowTools.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowTools.test.jsx b/awx/ui_next/src/components/Workflow/WorkflowTools.test.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowTools.test.jsx rename to awx/ui_next/src/components/Workflow/WorkflowTools.test.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowUtils.jsx b/awx/ui_next/src/components/Workflow/WorkflowUtils.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowUtils.jsx rename to awx/ui_next/src/components/Workflow/WorkflowUtils.js diff --git a/awx/ui_next/src/components/Workflow/WorkflowUtils.test.jsx b/awx/ui_next/src/components/Workflow/WorkflowUtils.test.js similarity index 100% rename from awx/ui_next/src/components/Workflow/WorkflowUtils.test.jsx rename to awx/ui_next/src/components/Workflow/WorkflowUtils.test.js diff --git a/awx/ui_next/src/contexts/Config.jsx b/awx/ui_next/src/contexts/Config.js similarity index 100% rename from awx/ui_next/src/contexts/Config.jsx rename to awx/ui_next/src/contexts/Config.js diff --git a/awx/ui_next/src/contexts/Kebabified.jsx b/awx/ui_next/src/contexts/Kebabified.js similarity index 100% rename from awx/ui_next/src/contexts/Kebabified.jsx rename to awx/ui_next/src/contexts/Kebabified.js diff --git a/awx/ui_next/src/contexts/Session.jsx b/awx/ui_next/src/contexts/Session.js similarity index 100% rename from awx/ui_next/src/contexts/Session.jsx rename to awx/ui_next/src/contexts/Session.js diff --git a/awx/ui_next/src/contexts/Settings.jsx b/awx/ui_next/src/contexts/Settings.js similarity index 100% rename from awx/ui_next/src/contexts/Settings.jsx rename to awx/ui_next/src/contexts/Settings.js diff --git a/awx/ui_next/src/contexts/Workflow.jsx b/awx/ui_next/src/contexts/Workflow.js similarity index 100% rename from awx/ui_next/src/contexts/Workflow.jsx rename to awx/ui_next/src/contexts/Workflow.js diff --git a/awx/ui_next/src/index.jsx b/awx/ui_next/src/index.js similarity index 100% rename from awx/ui_next/src/index.jsx rename to awx/ui_next/src/index.js diff --git a/awx/ui_next/src/index.test.jsx b/awx/ui_next/src/index.test.js similarity index 87% rename from awx/ui_next/src/index.test.jsx rename to awx/ui_next/src/index.test.js index bb7858dc78..49ae9e2317 100644 --- a/awx/ui_next/src/index.test.jsx +++ b/awx/ui_next/src/index.test.js @@ -9,7 +9,7 @@ describe('index.jsx', () => { const div = document.createElement('div'); div.setAttribute('id', 'app'); document.body.appendChild(div); - require('./index.jsx'); // eslint-disable-line global-require + require('./index.js'); // eslint-disable-line global-require expect(ReactDOM.render).toHaveBeenCalledWith( diff --git a/awx/ui_next/src/routeConfig.jsx b/awx/ui_next/src/routeConfig.js similarity index 100% rename from awx/ui_next/src/routeConfig.jsx rename to awx/ui_next/src/routeConfig.js diff --git a/awx/ui_next/src/routeConfig.test.jsx b/awx/ui_next/src/routeConfig.test.js similarity index 100% rename from awx/ui_next/src/routeConfig.test.jsx rename to awx/ui_next/src/routeConfig.test.js diff --git a/awx/ui_next/src/screens/ActivityStream/ActivityStream.jsx b/awx/ui_next/src/screens/ActivityStream/ActivityStream.js similarity index 100% rename from awx/ui_next/src/screens/ActivityStream/ActivityStream.jsx rename to awx/ui_next/src/screens/ActivityStream/ActivityStream.js diff --git a/awx/ui_next/src/screens/ActivityStream/ActivityStream.test.jsx b/awx/ui_next/src/screens/ActivityStream/ActivityStream.test.js similarity index 100% rename from awx/ui_next/src/screens/ActivityStream/ActivityStream.test.jsx rename to awx/ui_next/src/screens/ActivityStream/ActivityStream.test.js diff --git a/awx/ui_next/src/screens/ActivityStream/ActivityStreamDescription.jsx b/awx/ui_next/src/screens/ActivityStream/ActivityStreamDescription.js similarity index 100% rename from awx/ui_next/src/screens/ActivityStream/ActivityStreamDescription.jsx rename to awx/ui_next/src/screens/ActivityStream/ActivityStreamDescription.js diff --git a/awx/ui_next/src/screens/ActivityStream/ActivityStreamDescription.test.jsx b/awx/ui_next/src/screens/ActivityStream/ActivityStreamDescription.test.js similarity index 100% rename from awx/ui_next/src/screens/ActivityStream/ActivityStreamDescription.test.jsx rename to awx/ui_next/src/screens/ActivityStream/ActivityStreamDescription.test.js diff --git a/awx/ui_next/src/screens/ActivityStream/ActivityStreamDetailButton.jsx b/awx/ui_next/src/screens/ActivityStream/ActivityStreamDetailButton.js similarity index 100% rename from awx/ui_next/src/screens/ActivityStream/ActivityStreamDetailButton.jsx rename to awx/ui_next/src/screens/ActivityStream/ActivityStreamDetailButton.js diff --git a/awx/ui_next/src/screens/ActivityStream/ActivityStreamDetailButton.test.jsx b/awx/ui_next/src/screens/ActivityStream/ActivityStreamDetailButton.test.js similarity index 100% rename from awx/ui_next/src/screens/ActivityStream/ActivityStreamDetailButton.test.jsx rename to awx/ui_next/src/screens/ActivityStream/ActivityStreamDetailButton.test.js diff --git a/awx/ui_next/src/screens/ActivityStream/ActivityStreamListItem.jsx b/awx/ui_next/src/screens/ActivityStream/ActivityStreamListItem.js similarity index 100% rename from awx/ui_next/src/screens/ActivityStream/ActivityStreamListItem.jsx rename to awx/ui_next/src/screens/ActivityStream/ActivityStreamListItem.js diff --git a/awx/ui_next/src/screens/ActivityStream/ActivityStreamListItem.test.jsx b/awx/ui_next/src/screens/ActivityStream/ActivityStreamListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/ActivityStream/ActivityStreamListItem.test.jsx rename to awx/ui_next/src/screens/ActivityStream/ActivityStreamListItem.test.js diff --git a/awx/ui_next/src/screens/Application/Application/Application.jsx b/awx/ui_next/src/screens/Application/Application/Application.js similarity index 100% rename from awx/ui_next/src/screens/Application/Application/Application.jsx rename to awx/ui_next/src/screens/Application/Application/Application.js diff --git a/awx/ui_next/src/screens/Application/Application/Application.test.jsx b/awx/ui_next/src/screens/Application/Application/Application.test.js similarity index 100% rename from awx/ui_next/src/screens/Application/Application/Application.test.jsx rename to awx/ui_next/src/screens/Application/Application/Application.test.js diff --git a/awx/ui_next/src/screens/Application/ApplicationAdd/ApplicationAdd.jsx b/awx/ui_next/src/screens/Application/ApplicationAdd/ApplicationAdd.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationAdd/ApplicationAdd.jsx rename to awx/ui_next/src/screens/Application/ApplicationAdd/ApplicationAdd.js diff --git a/awx/ui_next/src/screens/Application/ApplicationAdd/ApplicationAdd.test.jsx b/awx/ui_next/src/screens/Application/ApplicationAdd/ApplicationAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationAdd/ApplicationAdd.test.jsx rename to awx/ui_next/src/screens/Application/ApplicationAdd/ApplicationAdd.test.js diff --git a/awx/ui_next/src/screens/Application/ApplicationDetails/ApplicationDetails.jsx b/awx/ui_next/src/screens/Application/ApplicationDetails/ApplicationDetails.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationDetails/ApplicationDetails.jsx rename to awx/ui_next/src/screens/Application/ApplicationDetails/ApplicationDetails.js diff --git a/awx/ui_next/src/screens/Application/ApplicationDetails/ApplicationDetails.test.jsx b/awx/ui_next/src/screens/Application/ApplicationDetails/ApplicationDetails.test.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationDetails/ApplicationDetails.test.jsx rename to awx/ui_next/src/screens/Application/ApplicationDetails/ApplicationDetails.test.js diff --git a/awx/ui_next/src/screens/Application/ApplicationEdit/ApplicationEdit.jsx b/awx/ui_next/src/screens/Application/ApplicationEdit/ApplicationEdit.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationEdit/ApplicationEdit.jsx rename to awx/ui_next/src/screens/Application/ApplicationEdit/ApplicationEdit.js diff --git a/awx/ui_next/src/screens/Application/ApplicationEdit/ApplicationEdit.test.jsx b/awx/ui_next/src/screens/Application/ApplicationEdit/ApplicationEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationEdit/ApplicationEdit.test.jsx rename to awx/ui_next/src/screens/Application/ApplicationEdit/ApplicationEdit.test.js diff --git a/awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx b/awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenList.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx rename to awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenList.js diff --git a/awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenList.test.jsx b/awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenList.test.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenList.test.jsx rename to awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenList.test.js diff --git a/awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx b/awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenListItem.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx rename to awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenListItem.js diff --git a/awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenListItem.test.jsx b/awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenListItem.test.jsx rename to awx/ui_next/src/screens/Application/ApplicationTokens/ApplicationTokenListItem.test.js diff --git a/awx/ui_next/src/screens/Application/Applications.jsx b/awx/ui_next/src/screens/Application/Applications.js similarity index 100% rename from awx/ui_next/src/screens/Application/Applications.jsx rename to awx/ui_next/src/screens/Application/Applications.js diff --git a/awx/ui_next/src/screens/Application/Applications.test.jsx b/awx/ui_next/src/screens/Application/Applications.test.js similarity index 100% rename from awx/ui_next/src/screens/Application/Applications.test.jsx rename to awx/ui_next/src/screens/Application/Applications.test.js diff --git a/awx/ui_next/src/screens/Application/ApplicationsList/ApplicationList.test.jsx b/awx/ui_next/src/screens/Application/ApplicationsList/ApplicationList.test.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationsList/ApplicationList.test.jsx rename to awx/ui_next/src/screens/Application/ApplicationsList/ApplicationList.test.js diff --git a/awx/ui_next/src/screens/Application/ApplicationsList/ApplicationListItem.jsx b/awx/ui_next/src/screens/Application/ApplicationsList/ApplicationListItem.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationsList/ApplicationListItem.jsx rename to awx/ui_next/src/screens/Application/ApplicationsList/ApplicationListItem.js diff --git a/awx/ui_next/src/screens/Application/ApplicationsList/ApplicationListItem.test.jsx b/awx/ui_next/src/screens/Application/ApplicationsList/ApplicationListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationsList/ApplicationListItem.test.jsx rename to awx/ui_next/src/screens/Application/ApplicationsList/ApplicationListItem.test.js diff --git a/awx/ui_next/src/screens/Application/ApplicationsList/ApplicationsList.jsx b/awx/ui_next/src/screens/Application/ApplicationsList/ApplicationsList.js similarity index 100% rename from awx/ui_next/src/screens/Application/ApplicationsList/ApplicationsList.jsx rename to awx/ui_next/src/screens/Application/ApplicationsList/ApplicationsList.js diff --git a/awx/ui_next/src/screens/Application/shared/ApplicationForm.jsx b/awx/ui_next/src/screens/Application/shared/ApplicationForm.js similarity index 100% rename from awx/ui_next/src/screens/Application/shared/ApplicationForm.jsx rename to awx/ui_next/src/screens/Application/shared/ApplicationForm.js diff --git a/awx/ui_next/src/screens/Application/shared/ApplicationForm.test.jsx b/awx/ui_next/src/screens/Application/shared/ApplicationForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Application/shared/ApplicationForm.test.jsx rename to awx/ui_next/src/screens/Application/shared/ApplicationForm.test.js diff --git a/awx/ui_next/src/screens/Credential/Credential.jsx b/awx/ui_next/src/screens/Credential/Credential.js similarity index 100% rename from awx/ui_next/src/screens/Credential/Credential.jsx rename to awx/ui_next/src/screens/Credential/Credential.js diff --git a/awx/ui_next/src/screens/Credential/Credential.test.jsx b/awx/ui_next/src/screens/Credential/Credential.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/Credential.test.jsx rename to awx/ui_next/src/screens/Credential/Credential.test.js diff --git a/awx/ui_next/src/screens/Credential/CredentialAdd/CredentialAdd.jsx b/awx/ui_next/src/screens/Credential/CredentialAdd/CredentialAdd.js similarity index 100% rename from awx/ui_next/src/screens/Credential/CredentialAdd/CredentialAdd.jsx rename to awx/ui_next/src/screens/Credential/CredentialAdd/CredentialAdd.js diff --git a/awx/ui_next/src/screens/Credential/CredentialAdd/CredentialAdd.test.jsx b/awx/ui_next/src/screens/Credential/CredentialAdd/CredentialAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/CredentialAdd/CredentialAdd.test.jsx rename to awx/ui_next/src/screens/Credential/CredentialAdd/CredentialAdd.test.js diff --git a/awx/ui_next/src/screens/Credential/CredentialDetail/CredentialDetail.jsx b/awx/ui_next/src/screens/Credential/CredentialDetail/CredentialDetail.js similarity index 100% rename from awx/ui_next/src/screens/Credential/CredentialDetail/CredentialDetail.jsx rename to awx/ui_next/src/screens/Credential/CredentialDetail/CredentialDetail.js diff --git a/awx/ui_next/src/screens/Credential/CredentialDetail/CredentialDetail.test.jsx b/awx/ui_next/src/screens/Credential/CredentialDetail/CredentialDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/CredentialDetail/CredentialDetail.test.jsx rename to awx/ui_next/src/screens/Credential/CredentialDetail/CredentialDetail.test.js diff --git a/awx/ui_next/src/screens/Credential/CredentialEdit/CredentialEdit.jsx b/awx/ui_next/src/screens/Credential/CredentialEdit/CredentialEdit.js similarity index 100% rename from awx/ui_next/src/screens/Credential/CredentialEdit/CredentialEdit.jsx rename to awx/ui_next/src/screens/Credential/CredentialEdit/CredentialEdit.js diff --git a/awx/ui_next/src/screens/Credential/CredentialEdit/CredentialEdit.test.jsx b/awx/ui_next/src/screens/Credential/CredentialEdit/CredentialEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/CredentialEdit/CredentialEdit.test.jsx rename to awx/ui_next/src/screens/Credential/CredentialEdit/CredentialEdit.test.js diff --git a/awx/ui_next/src/screens/Credential/CredentialList/CredentialList.jsx b/awx/ui_next/src/screens/Credential/CredentialList/CredentialList.js similarity index 100% rename from awx/ui_next/src/screens/Credential/CredentialList/CredentialList.jsx rename to awx/ui_next/src/screens/Credential/CredentialList/CredentialList.js diff --git a/awx/ui_next/src/screens/Credential/CredentialList/CredentialList.test.jsx b/awx/ui_next/src/screens/Credential/CredentialList/CredentialList.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/CredentialList/CredentialList.test.jsx rename to awx/ui_next/src/screens/Credential/CredentialList/CredentialList.test.js diff --git a/awx/ui_next/src/screens/Credential/CredentialList/CredentialListItem.jsx b/awx/ui_next/src/screens/Credential/CredentialList/CredentialListItem.js similarity index 100% rename from awx/ui_next/src/screens/Credential/CredentialList/CredentialListItem.jsx rename to awx/ui_next/src/screens/Credential/CredentialList/CredentialListItem.js diff --git a/awx/ui_next/src/screens/Credential/CredentialList/CredentialListItem.test.jsx b/awx/ui_next/src/screens/Credential/CredentialList/CredentialListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/CredentialList/CredentialListItem.test.jsx rename to awx/ui_next/src/screens/Credential/CredentialList/CredentialListItem.test.js diff --git a/awx/ui_next/src/screens/Credential/Credentials.jsx b/awx/ui_next/src/screens/Credential/Credentials.js similarity index 100% rename from awx/ui_next/src/screens/Credential/Credentials.jsx rename to awx/ui_next/src/screens/Credential/Credentials.js diff --git a/awx/ui_next/src/screens/Credential/Credentials.test.jsx b/awx/ui_next/src/screens/Credential/Credentials.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/Credentials.test.jsx rename to awx/ui_next/src/screens/Credential/Credentials.test.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialForm.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialForm.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialForm.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialForm.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialForm.test.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialForm.test.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialForm.test.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialFormFields/BecomeMethodField.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialFormFields/BecomeMethodField.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialFormFields/BecomeMethodField.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialFormFields/BecomeMethodField.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialFormFields/BecomeMethodField.test.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialFormFields/BecomeMethodField.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialFormFields/BecomeMethodField.test.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialFormFields/BecomeMethodField.test.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialFormFields/CredentialField.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialFormFields/CredentialField.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialFormFields/CredentialField.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialFormFields/CredentialField.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialFormFields/CredentialField.test.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialFormFields/CredentialField.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialFormFields/CredentialField.test.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialFormFields/CredentialField.test.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.test.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.test.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.test.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.test.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.test.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.test.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/MetadataStep.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/MetadataStep.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/MetadataStep.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/MetadataStep.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.test.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.test.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.test.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.js diff --git a/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.test.jsx b/awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.test.jsx rename to awx/ui_next/src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.test.js diff --git a/awx/ui_next/src/screens/Credential/shared/ExternalTestModal.jsx b/awx/ui_next/src/screens/Credential/shared/ExternalTestModal.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/ExternalTestModal.jsx rename to awx/ui_next/src/screens/Credential/shared/ExternalTestModal.js diff --git a/awx/ui_next/src/screens/Credential/shared/ExternalTestModal.test.jsx b/awx/ui_next/src/screens/Credential/shared/ExternalTestModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/ExternalTestModal.test.jsx rename to awx/ui_next/src/screens/Credential/shared/ExternalTestModal.test.js diff --git a/awx/ui_next/src/screens/Credential/shared/TypeInputsSubForm.jsx b/awx/ui_next/src/screens/Credential/shared/TypeInputsSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Credential/shared/TypeInputsSubForm.jsx rename to awx/ui_next/src/screens/Credential/shared/TypeInputsSubForm.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialType.jsx b/awx/ui_next/src/screens/CredentialType/CredentialType.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialType.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialType.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialType.test.jsx b/awx/ui_next/src/screens/CredentialType/CredentialType.test.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialType.test.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialType.test.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypeAdd/CredentialTypeAdd.jsx b/awx/ui_next/src/screens/CredentialType/CredentialTypeAdd/CredentialTypeAdd.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialTypeAdd/CredentialTypeAdd.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialTypeAdd/CredentialTypeAdd.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypeAdd/CredentialTypeAdd.test.jsx b/awx/ui_next/src/screens/CredentialType/CredentialTypeAdd/CredentialTypeAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialTypeAdd/CredentialTypeAdd.test.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialTypeAdd/CredentialTypeAdd.test.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx b/awx/ui_next/src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.test.jsx b/awx/ui_next/src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.test.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.test.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.test.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypeEdit/CredentialTypeEdit.jsx b/awx/ui_next/src/screens/CredentialType/CredentialTypeEdit/CredentialTypeEdit.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialTypeEdit/CredentialTypeEdit.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialTypeEdit/CredentialTypeEdit.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypeEdit/CredentialTypeEdit.test.jsx b/awx/ui_next/src/screens/CredentialType/CredentialTypeEdit/CredentialTypeEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialTypeEdit/CredentialTypeEdit.test.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialTypeEdit/CredentialTypeEdit.test.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx b/awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeList.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeList.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeList.test.jsx b/awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeList.test.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeList.test.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeList.test.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx b/awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.test.jsx b/awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.test.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.test.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypes.jsx b/awx/ui_next/src/screens/CredentialType/CredentialTypes.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialTypes.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialTypes.js diff --git a/awx/ui_next/src/screens/CredentialType/CredentialTypes.test.jsx b/awx/ui_next/src/screens/CredentialType/CredentialTypes.test.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/CredentialTypes.test.jsx rename to awx/ui_next/src/screens/CredentialType/CredentialTypes.test.js diff --git a/awx/ui_next/src/screens/CredentialType/shared/CredentialTypeForm.jsx b/awx/ui_next/src/screens/CredentialType/shared/CredentialTypeForm.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/shared/CredentialTypeForm.jsx rename to awx/ui_next/src/screens/CredentialType/shared/CredentialTypeForm.js diff --git a/awx/ui_next/src/screens/CredentialType/shared/CredentialTypeForm.test.jsx b/awx/ui_next/src/screens/CredentialType/shared/CredentialTypeForm.test.js similarity index 100% rename from awx/ui_next/src/screens/CredentialType/shared/CredentialTypeForm.test.jsx rename to awx/ui_next/src/screens/CredentialType/shared/CredentialTypeForm.test.js diff --git a/awx/ui_next/src/screens/Dashboard/Dashboard.jsx b/awx/ui_next/src/screens/Dashboard/Dashboard.js similarity index 100% rename from awx/ui_next/src/screens/Dashboard/Dashboard.jsx rename to awx/ui_next/src/screens/Dashboard/Dashboard.js diff --git a/awx/ui_next/src/screens/Dashboard/Dashboard.test.jsx b/awx/ui_next/src/screens/Dashboard/Dashboard.test.js similarity index 100% rename from awx/ui_next/src/screens/Dashboard/Dashboard.test.jsx rename to awx/ui_next/src/screens/Dashboard/Dashboard.test.js diff --git a/awx/ui_next/src/screens/Dashboard/DashboardGraph.jsx b/awx/ui_next/src/screens/Dashboard/DashboardGraph.js similarity index 100% rename from awx/ui_next/src/screens/Dashboard/DashboardGraph.jsx rename to awx/ui_next/src/screens/Dashboard/DashboardGraph.js diff --git a/awx/ui_next/src/screens/Dashboard/DashboardGraph.test.jsx b/awx/ui_next/src/screens/Dashboard/DashboardGraph.test.js similarity index 100% rename from awx/ui_next/src/screens/Dashboard/DashboardGraph.test.jsx rename to awx/ui_next/src/screens/Dashboard/DashboardGraph.test.js diff --git a/awx/ui_next/src/screens/Dashboard/shared/ChartTooltip.jsx b/awx/ui_next/src/screens/Dashboard/shared/ChartTooltip.js similarity index 100% rename from awx/ui_next/src/screens/Dashboard/shared/ChartTooltip.jsx rename to awx/ui_next/src/screens/Dashboard/shared/ChartTooltip.js diff --git a/awx/ui_next/src/screens/Dashboard/shared/Count.jsx b/awx/ui_next/src/screens/Dashboard/shared/Count.js similarity index 100% rename from awx/ui_next/src/screens/Dashboard/shared/Count.jsx rename to awx/ui_next/src/screens/Dashboard/shared/Count.js diff --git a/awx/ui_next/src/screens/Dashboard/shared/Count.test.jsx b/awx/ui_next/src/screens/Dashboard/shared/Count.test.js similarity index 100% rename from awx/ui_next/src/screens/Dashboard/shared/Count.test.jsx rename to awx/ui_next/src/screens/Dashboard/shared/Count.test.js diff --git a/awx/ui_next/src/screens/Dashboard/shared/LineChart.jsx b/awx/ui_next/src/screens/Dashboard/shared/LineChart.js similarity index 100% rename from awx/ui_next/src/screens/Dashboard/shared/LineChart.jsx rename to awx/ui_next/src/screens/Dashboard/shared/LineChart.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironment.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironment.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironment.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironment.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentAdd/ExecutionEnvironmentAdd.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentAdd/ExecutionEnvironmentAdd.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentAdd/ExecutionEnvironmentAdd.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentAdd/ExecutionEnvironmentAdd.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentAdd/ExecutionEnvironmentAdd.test.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentAdd/ExecutionEnvironmentAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentAdd/ExecutionEnvironmentAdd.test.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentAdd/ExecutionEnvironmentAdd.test.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.test.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.test.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.test.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.test.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentEdit/ExecutionEnvironmentEdit.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentEdit/ExecutionEnvironmentEdit.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentEdit/ExecutionEnvironmentEdit.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentEdit/ExecutionEnvironmentEdit.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentEdit/ExecutionEnvironmentEdit.test.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentEdit/ExecutionEnvironmentEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentEdit/ExecutionEnvironmentEdit.test.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentEdit/ExecutionEnvironmentEdit.test.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.test.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.test.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.test.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.test.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.test.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.test.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.test.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.test.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.test.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.test.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.test.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.test.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.test.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.test.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironments.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironments.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironments.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironments.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironments.test.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironments.test.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironments.test.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironments.test.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.js diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.test.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.test.js similarity index 100% rename from awx/ui_next/src/screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.test.jsx rename to awx/ui_next/src/screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.test.js diff --git a/awx/ui_next/src/screens/Host/Host.jsx b/awx/ui_next/src/screens/Host/Host.js similarity index 100% rename from awx/ui_next/src/screens/Host/Host.jsx rename to awx/ui_next/src/screens/Host/Host.js diff --git a/awx/ui_next/src/screens/Host/Host.test.jsx b/awx/ui_next/src/screens/Host/Host.test.js similarity index 100% rename from awx/ui_next/src/screens/Host/Host.test.jsx rename to awx/ui_next/src/screens/Host/Host.test.js diff --git a/awx/ui_next/src/screens/Host/HostAdd/HostAdd.jsx b/awx/ui_next/src/screens/Host/HostAdd/HostAdd.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostAdd/HostAdd.jsx rename to awx/ui_next/src/screens/Host/HostAdd/HostAdd.js diff --git a/awx/ui_next/src/screens/Host/HostAdd/HostAdd.test.jsx b/awx/ui_next/src/screens/Host/HostAdd/HostAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostAdd/HostAdd.test.jsx rename to awx/ui_next/src/screens/Host/HostAdd/HostAdd.test.js diff --git a/awx/ui_next/src/screens/Host/HostDetail/HostDetail.jsx b/awx/ui_next/src/screens/Host/HostDetail/HostDetail.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostDetail/HostDetail.jsx rename to awx/ui_next/src/screens/Host/HostDetail/HostDetail.js diff --git a/awx/ui_next/src/screens/Host/HostDetail/HostDetail.test.jsx b/awx/ui_next/src/screens/Host/HostDetail/HostDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostDetail/HostDetail.test.jsx rename to awx/ui_next/src/screens/Host/HostDetail/HostDetail.test.js diff --git a/awx/ui_next/src/screens/Host/HostEdit/HostEdit.jsx b/awx/ui_next/src/screens/Host/HostEdit/HostEdit.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostEdit/HostEdit.jsx rename to awx/ui_next/src/screens/Host/HostEdit/HostEdit.js diff --git a/awx/ui_next/src/screens/Host/HostEdit/HostEdit.test.jsx b/awx/ui_next/src/screens/Host/HostEdit/HostEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostEdit/HostEdit.test.jsx rename to awx/ui_next/src/screens/Host/HostEdit/HostEdit.test.js diff --git a/awx/ui_next/src/screens/Host/HostFacts/HostFacts.jsx b/awx/ui_next/src/screens/Host/HostFacts/HostFacts.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostFacts/HostFacts.jsx rename to awx/ui_next/src/screens/Host/HostFacts/HostFacts.js diff --git a/awx/ui_next/src/screens/Host/HostFacts/HostFacts.test.jsx b/awx/ui_next/src/screens/Host/HostFacts/HostFacts.test.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostFacts/HostFacts.test.jsx rename to awx/ui_next/src/screens/Host/HostFacts/HostFacts.test.js diff --git a/awx/ui_next/src/screens/Host/HostGroups/HostGroupItem.jsx b/awx/ui_next/src/screens/Host/HostGroups/HostGroupItem.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostGroups/HostGroupItem.jsx rename to awx/ui_next/src/screens/Host/HostGroups/HostGroupItem.js diff --git a/awx/ui_next/src/screens/Host/HostGroups/HostGroupItem.test.jsx b/awx/ui_next/src/screens/Host/HostGroups/HostGroupItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostGroups/HostGroupItem.test.jsx rename to awx/ui_next/src/screens/Host/HostGroups/HostGroupItem.test.js diff --git a/awx/ui_next/src/screens/Host/HostGroups/HostGroups.jsx b/awx/ui_next/src/screens/Host/HostGroups/HostGroups.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostGroups/HostGroups.jsx rename to awx/ui_next/src/screens/Host/HostGroups/HostGroups.js diff --git a/awx/ui_next/src/screens/Host/HostGroups/HostGroups.test.jsx b/awx/ui_next/src/screens/Host/HostGroups/HostGroups.test.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostGroups/HostGroups.test.jsx rename to awx/ui_next/src/screens/Host/HostGroups/HostGroups.test.js diff --git a/awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.jsx b/awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.jsx rename to awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.js diff --git a/awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.test.jsx b/awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.test.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.test.jsx rename to awx/ui_next/src/screens/Host/HostGroups/HostGroupsList.test.js diff --git a/awx/ui_next/src/screens/Host/HostList/HostList.jsx b/awx/ui_next/src/screens/Host/HostList/HostList.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostList/HostList.jsx rename to awx/ui_next/src/screens/Host/HostList/HostList.js diff --git a/awx/ui_next/src/screens/Host/HostList/HostList.test.jsx b/awx/ui_next/src/screens/Host/HostList/HostList.test.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostList/HostList.test.jsx rename to awx/ui_next/src/screens/Host/HostList/HostList.test.js diff --git a/awx/ui_next/src/screens/Host/HostList/HostListItem.jsx b/awx/ui_next/src/screens/Host/HostList/HostListItem.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostList/HostListItem.jsx rename to awx/ui_next/src/screens/Host/HostList/HostListItem.js diff --git a/awx/ui_next/src/screens/Host/HostList/HostListItem.test.jsx b/awx/ui_next/src/screens/Host/HostList/HostListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostList/HostListItem.test.jsx rename to awx/ui_next/src/screens/Host/HostList/HostListItem.test.js diff --git a/awx/ui_next/src/screens/Host/HostList/SmartInventoryButton.jsx b/awx/ui_next/src/screens/Host/HostList/SmartInventoryButton.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostList/SmartInventoryButton.jsx rename to awx/ui_next/src/screens/Host/HostList/SmartInventoryButton.js diff --git a/awx/ui_next/src/screens/Host/HostList/SmartInventoryButton.test.jsx b/awx/ui_next/src/screens/Host/HostList/SmartInventoryButton.test.js similarity index 100% rename from awx/ui_next/src/screens/Host/HostList/SmartInventoryButton.test.jsx rename to awx/ui_next/src/screens/Host/HostList/SmartInventoryButton.test.js diff --git a/awx/ui_next/src/screens/Host/Hosts.jsx b/awx/ui_next/src/screens/Host/Hosts.js similarity index 100% rename from awx/ui_next/src/screens/Host/Hosts.jsx rename to awx/ui_next/src/screens/Host/Hosts.js diff --git a/awx/ui_next/src/screens/Host/Hosts.test.jsx b/awx/ui_next/src/screens/Host/Hosts.test.js similarity index 100% rename from awx/ui_next/src/screens/Host/Hosts.test.jsx rename to awx/ui_next/src/screens/Host/Hosts.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/ContainerGroup.jsx b/awx/ui_next/src/screens/InstanceGroup/ContainerGroup.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/ContainerGroup.jsx rename to awx/ui_next/src/screens/InstanceGroup/ContainerGroup.js diff --git a/awx/ui_next/src/screens/InstanceGroup/ContainerGroup.test.jsx b/awx/ui_next/src/screens/InstanceGroup/ContainerGroup.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/ContainerGroup.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/ContainerGroup.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/ContainerGroupAdd/ContainerGroupAdd.jsx b/awx/ui_next/src/screens/InstanceGroup/ContainerGroupAdd/ContainerGroupAdd.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/ContainerGroupAdd/ContainerGroupAdd.jsx rename to awx/ui_next/src/screens/InstanceGroup/ContainerGroupAdd/ContainerGroupAdd.js diff --git a/awx/ui_next/src/screens/InstanceGroup/ContainerGroupAdd/ContainerGroupAdd.test.jsx b/awx/ui_next/src/screens/InstanceGroup/ContainerGroupAdd/ContainerGroupAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/ContainerGroupAdd/ContainerGroupAdd.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/ContainerGroupAdd/ContainerGroupAdd.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx b/awx/ui_next/src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx rename to awx/ui_next/src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.js diff --git a/awx/ui_next/src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.test.jsx b/awx/ui_next/src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/ContainerGroupEdit/ContainerGroupEdit.jsx b/awx/ui_next/src/screens/InstanceGroup/ContainerGroupEdit/ContainerGroupEdit.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/ContainerGroupEdit/ContainerGroupEdit.jsx rename to awx/ui_next/src/screens/InstanceGroup/ContainerGroupEdit/ContainerGroupEdit.js diff --git a/awx/ui_next/src/screens/InstanceGroup/ContainerGroupEdit/ContainerGroupEdit.test.jsx b/awx/ui_next/src/screens/InstanceGroup/ContainerGroupEdit/ContainerGroupEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/ContainerGroupEdit/ContainerGroupEdit.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/ContainerGroupEdit/ContainerGroupEdit.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroup.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroup.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroup.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroup.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroup.test.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroup.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroup.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroup.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupAdd/InstanceGroupAdd.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupAdd/InstanceGroupAdd.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroupAdd/InstanceGroupAdd.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroupAdd/InstanceGroupAdd.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupAdd/InstanceGroupAdd.test.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupAdd/InstanceGroupAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroupAdd/InstanceGroupAdd.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroupAdd/InstanceGroupAdd.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.test.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupEdit/InstanceGroupEdit.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupEdit/InstanceGroupEdit.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroupEdit/InstanceGroupEdit.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroupEdit/InstanceGroupEdit.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupEdit/InstanceGroupEdit.test.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupEdit/InstanceGroupEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroupEdit/InstanceGroupEdit.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroupEdit/InstanceGroupEdit.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.test.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.test.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroups.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroups.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroups.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroups.js diff --git a/awx/ui_next/src/screens/InstanceGroup/InstanceGroups.test.jsx b/awx/ui_next/src/screens/InstanceGroup/InstanceGroups.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/InstanceGroups.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/InstanceGroups.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceList.jsx b/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceList.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/Instances/InstanceList.jsx rename to awx/ui_next/src/screens/InstanceGroup/Instances/InstanceList.js diff --git a/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceList.test.jsx b/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceList.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/Instances/InstanceList.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/Instances/InstanceList.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.jsx b/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.jsx rename to awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.js diff --git a/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.test.jsx b/awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/Instances/InstanceListItem.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/shared/ContainerGroupForm.jsx b/awx/ui_next/src/screens/InstanceGroup/shared/ContainerGroupForm.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/shared/ContainerGroupForm.jsx rename to awx/ui_next/src/screens/InstanceGroup/shared/ContainerGroupForm.js diff --git a/awx/ui_next/src/screens/InstanceGroup/shared/ContainerGroupForm.test.jsx b/awx/ui_next/src/screens/InstanceGroup/shared/ContainerGroupForm.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/shared/ContainerGroupForm.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/shared/ContainerGroupForm.test.js diff --git a/awx/ui_next/src/screens/InstanceGroup/shared/InstanceGroupForm.jsx b/awx/ui_next/src/screens/InstanceGroup/shared/InstanceGroupForm.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/shared/InstanceGroupForm.jsx rename to awx/ui_next/src/screens/InstanceGroup/shared/InstanceGroupForm.js diff --git a/awx/ui_next/src/screens/InstanceGroup/shared/InstanceGroupForm.test.jsx b/awx/ui_next/src/screens/InstanceGroup/shared/InstanceGroupForm.test.js similarity index 100% rename from awx/ui_next/src/screens/InstanceGroup/shared/InstanceGroupForm.test.jsx rename to awx/ui_next/src/screens/InstanceGroup/shared/InstanceGroupForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/Inventories.jsx b/awx/ui_next/src/screens/Inventory/Inventories.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/Inventories.jsx rename to awx/ui_next/src/screens/Inventory/Inventories.js diff --git a/awx/ui_next/src/screens/Inventory/Inventories.test.jsx b/awx/ui_next/src/screens/Inventory/Inventories.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/Inventories.test.jsx rename to awx/ui_next/src/screens/Inventory/Inventories.test.js diff --git a/awx/ui_next/src/screens/Inventory/Inventory.jsx b/awx/ui_next/src/screens/Inventory/Inventory.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/Inventory.jsx rename to awx/ui_next/src/screens/Inventory/Inventory.js diff --git a/awx/ui_next/src/screens/Inventory/Inventory.test.jsx b/awx/ui_next/src/screens/Inventory/Inventory.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/Inventory.test.jsx rename to awx/ui_next/src/screens/Inventory/Inventory.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryAdd/InventoryAdd.jsx b/awx/ui_next/src/screens/Inventory/InventoryAdd/InventoryAdd.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryAdd/InventoryAdd.jsx rename to awx/ui_next/src/screens/Inventory/InventoryAdd/InventoryAdd.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryAdd/InventoryAdd.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryAdd/InventoryAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryAdd/InventoryAdd.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryAdd/InventoryAdd.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.jsx b/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.jsx rename to awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryEdit/InventoryEdit.jsx b/awx/ui_next/src/screens/Inventory/InventoryEdit/InventoryEdit.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryEdit/InventoryEdit.jsx rename to awx/ui_next/src/screens/Inventory/InventoryEdit/InventoryEdit.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryEdit/InventoryEdit.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryEdit/InventoryEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryEdit/InventoryEdit.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryEdit/InventoryEdit.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroup/InventoryGroup.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroup/InventoryGroup.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroup/InventoryGroup.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroup/InventoryGroup.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroup/InventoryGroup.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroup/InventoryGroup.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroup/InventoryGroup.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroup/InventoryGroup.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupAdd/InventoryGroupAdd.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupAdd/InventoryGroupAdd.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupAdd/InventoryGroupAdd.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupAdd/InventoryGroupAdd.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupAdd/InventoryGroupAdd.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupAdd/InventoryGroupAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupAdd/InventoryGroupAdd.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupAdd/InventoryGroupAdd.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupEdit/InventoryGroupEdit.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupEdit/InventoryGroupEdit.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupEdit/InventoryGroupEdit.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupEdit/InventoryGroupEdit.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupEdit/InventoryGroupEdit.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupEdit/InventoryGroupEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupEdit/InventoryGroupEdit.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupEdit/InventoryGroupEdit.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupHostAdd/InventoryGroupHostAdd.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupHostAdd/InventoryGroupHostAdd.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupHostAdd/InventoryGroupHostAdd.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupHostAdd/InventoryGroupHostAdd.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupHostAdd/InventoryGroupHostAdd.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupHostAdd/InventoryGroupHostAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupHostAdd/InventoryGroupHostAdd.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupHostAdd/InventoryGroupHostAdd.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHosts.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHosts.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHosts.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHosts.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHosts.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHosts.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHosts.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHosts.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupItem.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupItem.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupItem.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupItem.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupItem.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroups.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroups.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroups.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroups.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroups.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroups.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroups.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroups.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupsList.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupsList.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupsList.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupsList.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupsList.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryGroups/InventoryGroupsList.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHost/InventoryHost.jsx b/awx/ui_next/src/screens/Inventory/InventoryHost/InventoryHost.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHost/InventoryHost.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHost/InventoryHost.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHost/InventoryHost.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryHost/InventoryHost.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHost/InventoryHost.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHost/InventoryHost.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostAdd/InventoryHostAdd.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostAdd/InventoryHostAdd.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostAdd/InventoryHostAdd.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostAdd/InventoryHostAdd.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostAdd/InventoryHostAdd.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostAdd/InventoryHostAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostAdd/InventoryHostAdd.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostAdd/InventoryHostAdd.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostEdit/InventoryHostEdit.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostEdit/InventoryHostEdit.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostEdit/InventoryHostEdit.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostEdit/InventoryHostEdit.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostEdit/InventoryHostEdit.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostEdit/InventoryHostEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostEdit/InventoryHostEdit.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostEdit/InventoryHostEdit.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroups.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroups.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroups.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroups.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroups.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroups.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroups.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroups.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx b/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostItem.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostItem.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostItem.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostItem.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostItem.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostList.jsx b/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostList.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostList.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostList.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostList.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostList.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostList.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHostList.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHosts.jsx b/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHosts.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHosts.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHosts.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHosts.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHosts.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHosts.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryHosts/InventoryHosts.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.jsx b/awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.jsx rename to awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryList/InventoryList.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.jsx b/awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.jsx rename to awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryList/InventoryListItem.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryList/useWsInventories.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryList/useWsInventories.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryList/useWsInventories.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryList/useWsInventories.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryRelatedGroupAdd/InventoryRelatedGroupAdd.jsx b/awx/ui_next/src/screens/Inventory/InventoryRelatedGroupAdd/InventoryRelatedGroupAdd.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryRelatedGroupAdd/InventoryRelatedGroupAdd.jsx rename to awx/ui_next/src/screens/Inventory/InventoryRelatedGroupAdd/InventoryRelatedGroupAdd.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryRelatedGroupAdd/InventoryRelatedGroupAdd.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryRelatedGroupAdd/InventoryRelatedGroupAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryRelatedGroupAdd/InventoryRelatedGroupAdd.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryRelatedGroupAdd/InventoryRelatedGroupAdd.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx b/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx rename to awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx b/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx rename to awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.test.jsx rename to awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroups.jsx b/awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroups.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroups.jsx rename to awx/ui_next/src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroups.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySource/InventorySource.jsx b/awx/ui_next/src/screens/Inventory/InventorySource/InventorySource.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySource/InventorySource.jsx rename to awx/ui_next/src/screens/Inventory/InventorySource/InventorySource.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySource/InventorySource.test.jsx b/awx/ui_next/src/screens/Inventory/InventorySource/InventorySource.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySource/InventorySource.test.jsx rename to awx/ui_next/src/screens/Inventory/InventorySource/InventorySource.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySourceAdd/InventorySourceAdd.jsx b/awx/ui_next/src/screens/Inventory/InventorySourceAdd/InventorySourceAdd.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySourceAdd/InventorySourceAdd.jsx rename to awx/ui_next/src/screens/Inventory/InventorySourceAdd/InventorySourceAdd.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySourceAdd/InventorySourceAdd.test.jsx b/awx/ui_next/src/screens/Inventory/InventorySourceAdd/InventorySourceAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySourceAdd/InventorySourceAdd.test.jsx rename to awx/ui_next/src/screens/Inventory/InventorySourceAdd/InventorySourceAdd.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx b/awx/ui_next/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx rename to awx/ui_next/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.test.jsx b/awx/ui_next/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.test.jsx rename to awx/ui_next/src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySourceEdit/InventorySourceEdit.jsx b/awx/ui_next/src/screens/Inventory/InventorySourceEdit/InventorySourceEdit.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySourceEdit/InventorySourceEdit.jsx rename to awx/ui_next/src/screens/Inventory/InventorySourceEdit/InventorySourceEdit.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySourceEdit/InventorySourceEdit.test.jsx b/awx/ui_next/src/screens/Inventory/InventorySourceEdit/InventorySourceEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySourceEdit/InventorySourceEdit.test.jsx rename to awx/ui_next/src/screens/Inventory/InventorySourceEdit/InventorySourceEdit.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.jsx b/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.jsx rename to awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.test.jsx b/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.test.jsx rename to awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceList.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceListItem.jsx b/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceListItem.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceListItem.jsx rename to awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceListItem.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceListItem.test.jsx b/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceListItem.test.jsx rename to awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceListItem.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySources/InventorySources.jsx b/awx/ui_next/src/screens/Inventory/InventorySources/InventorySources.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySources/InventorySources.jsx rename to awx/ui_next/src/screens/Inventory/InventorySources/InventorySources.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySources/InventorySources.test.jsx b/awx/ui_next/src/screens/Inventory/InventorySources/InventorySources.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySources/InventorySources.test.jsx rename to awx/ui_next/src/screens/Inventory/InventorySources/InventorySources.test.js diff --git a/awx/ui_next/src/screens/Inventory/InventorySources/useWsInventorySources.test.jsx b/awx/ui_next/src/screens/Inventory/InventorySources/useWsInventorySources.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/InventorySources/useWsInventorySources.test.jsx rename to awx/ui_next/src/screens/Inventory/InventorySources/useWsInventorySources.test.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventory.jsx b/awx/ui_next/src/screens/Inventory/SmartInventory.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventory.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventory.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventory.test.jsx b/awx/ui_next/src/screens/Inventory/SmartInventory.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventory.test.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventory.test.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryAdd/SmartInventoryAdd.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryAdd/SmartInventoryAdd.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryAdd/SmartInventoryAdd.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryAdd/SmartInventoryAdd.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryAdd/SmartInventoryAdd.test.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryAdd/SmartInventoryAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryAdd/SmartInventoryAdd.test.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryAdd/SmartInventoryAdd.test.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.test.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.test.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.test.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryEdit/SmartInventoryEdit.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryEdit/SmartInventoryEdit.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryEdit/SmartInventoryEdit.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryEdit/SmartInventoryEdit.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryEdit/SmartInventoryEdit.test.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryEdit/SmartInventoryEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryEdit/SmartInventoryEdit.test.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryEdit/SmartInventoryEdit.test.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.test.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.test.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.test.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.test.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.test.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.test.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.test.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.test.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.test.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.test.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.test.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.test.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHosts.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHosts.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHosts.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHosts.js diff --git a/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHosts.test.jsx b/awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHosts.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHosts.test.jsx rename to awx/ui_next/src/screens/Inventory/SmartInventoryHosts/SmartInventoryHosts.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventoryForm.jsx b/awx/ui_next/src/screens/Inventory/shared/InventoryForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventoryForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventoryForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventoryForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventoryForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventoryForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventoryForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventoryGroupForm.jsx b/awx/ui_next/src/screens/Inventory/shared/InventoryGroupForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventoryGroupForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventoryGroupForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventoryGroupForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventoryGroupForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventoryGroupForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventoryGroupForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx b/awx/ui_next/src/screens/Inventory/shared/InventoryGroupsDeleteModal.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventoryGroupsDeleteModal.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventoryGroupsDeleteModal.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventoryGroupsDeleteModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventoryGroupsDeleteModal.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventoryGroupsDeleteModal.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceForm.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/InsightsSubForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSyncButton.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSyncButton.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSyncButton.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSyncButton.js diff --git a/awx/ui_next/src/screens/Inventory/shared/InventorySourceSyncButton.test.jsx b/awx/ui_next/src/screens/Inventory/shared/InventorySourceSyncButton.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/InventorySourceSyncButton.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/InventorySourceSyncButton.test.js diff --git a/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.jsx b/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.jsx rename to awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.js diff --git a/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.test.jsx b/awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.test.jsx rename to awx/ui_next/src/screens/Inventory/shared/SmartInventoryForm.test.js diff --git a/awx/ui_next/src/screens/Job/Job.jsx b/awx/ui_next/src/screens/Job/Job.js similarity index 100% rename from awx/ui_next/src/screens/Job/Job.jsx rename to awx/ui_next/src/screens/Job/Job.js diff --git a/awx/ui_next/src/screens/Job/Job.test.jsx b/awx/ui_next/src/screens/Job/Job.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/Job.test.jsx rename to awx/ui_next/src/screens/Job/Job.test.js diff --git a/awx/ui_next/src/screens/Job/JobDetail/JobDetail.jsx b/awx/ui_next/src/screens/Job/JobDetail/JobDetail.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobDetail/JobDetail.jsx rename to awx/ui_next/src/screens/Job/JobDetail/JobDetail.js diff --git a/awx/ui_next/src/screens/Job/JobDetail/JobDetail.test.jsx b/awx/ui_next/src/screens/Job/JobDetail/JobDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobDetail/JobDetail.test.jsx rename to awx/ui_next/src/screens/Job/JobDetail/JobDetail.test.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/HostEventModal.jsx b/awx/ui_next/src/screens/Job/JobOutput/HostEventModal.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/HostEventModal.jsx rename to awx/ui_next/src/screens/Job/JobOutput/HostEventModal.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/HostEventModal.test.jsx b/awx/ui_next/src/screens/Job/JobOutput/HostEventModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/HostEventModal.test.jsx rename to awx/ui_next/src/screens/Job/JobOutput/HostEventModal.test.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/JobEvent.jsx b/awx/ui_next/src/screens/Job/JobOutput/JobEvent.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/JobEvent.jsx rename to awx/ui_next/src/screens/Job/JobOutput/JobEvent.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/JobEvent.test.jsx b/awx/ui_next/src/screens/Job/JobOutput/JobEvent.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/JobEvent.test.jsx rename to awx/ui_next/src/screens/Job/JobOutput/JobEvent.test.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/JobEventSkeleton.jsx b/awx/ui_next/src/screens/Job/JobOutput/JobEventSkeleton.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/JobEventSkeleton.jsx rename to awx/ui_next/src/screens/Job/JobOutput/JobEventSkeleton.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/JobEventSkeleton.test.jsx b/awx/ui_next/src/screens/Job/JobOutput/JobEventSkeleton.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/JobEventSkeleton.test.jsx rename to awx/ui_next/src/screens/Job/JobOutput/JobEventSkeleton.test.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/JobOutput.jsx b/awx/ui_next/src/screens/Job/JobOutput/JobOutput.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/JobOutput.jsx rename to awx/ui_next/src/screens/Job/JobOutput/JobOutput.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/JobOutput.test.jsx b/awx/ui_next/src/screens/Job/JobOutput/JobOutput.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/JobOutput.test.jsx rename to awx/ui_next/src/screens/Job/JobOutput/JobOutput.test.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/PageControls.jsx b/awx/ui_next/src/screens/Job/JobOutput/PageControls.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/PageControls.jsx rename to awx/ui_next/src/screens/Job/JobOutput/PageControls.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/PageControls.test.jsx b/awx/ui_next/src/screens/Job/JobOutput/PageControls.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/PageControls.test.jsx rename to awx/ui_next/src/screens/Job/JobOutput/PageControls.test.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/HostStatusBar.jsx b/awx/ui_next/src/screens/Job/JobOutput/shared/HostStatusBar.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/shared/HostStatusBar.jsx rename to awx/ui_next/src/screens/Job/JobOutput/shared/HostStatusBar.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/HostStatusBar.test.jsx b/awx/ui_next/src/screens/Job/JobOutput/shared/HostStatusBar.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/shared/HostStatusBar.test.jsx rename to awx/ui_next/src/screens/Job/JobOutput/shared/HostStatusBar.test.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLine.jsx b/awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLine.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLine.jsx rename to awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLine.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLineNumber.jsx b/awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLineNumber.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLineNumber.jsx rename to awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLineNumber.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLineText.jsx b/awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLineText.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLineText.jsx rename to awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLineText.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLineToggle.jsx b/awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLineToggle.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLineToggle.jsx rename to awx/ui_next/src/screens/Job/JobOutput/shared/JobEventLineToggle.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/OutputToolbar.jsx b/awx/ui_next/src/screens/Job/JobOutput/shared/OutputToolbar.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/shared/OutputToolbar.jsx rename to awx/ui_next/src/screens/Job/JobOutput/shared/OutputToolbar.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/OutputToolbar.test.jsx b/awx/ui_next/src/screens/Job/JobOutput/shared/OutputToolbar.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/shared/OutputToolbar.test.jsx rename to awx/ui_next/src/screens/Job/JobOutput/shared/OutputToolbar.test.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/index.jsx b/awx/ui_next/src/screens/Job/JobOutput/shared/index.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/shared/index.jsx rename to awx/ui_next/src/screens/Job/JobOutput/shared/index.js diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.test.jsx b/awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.test.jsx rename to awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.test.js diff --git a/awx/ui_next/src/screens/Job/JobTypeRedirect.jsx b/awx/ui_next/src/screens/Job/JobTypeRedirect.js similarity index 100% rename from awx/ui_next/src/screens/Job/JobTypeRedirect.jsx rename to awx/ui_next/src/screens/Job/JobTypeRedirect.js diff --git a/awx/ui_next/src/screens/Job/Jobs.jsx b/awx/ui_next/src/screens/Job/Jobs.js similarity index 100% rename from awx/ui_next/src/screens/Job/Jobs.jsx rename to awx/ui_next/src/screens/Job/Jobs.js diff --git a/awx/ui_next/src/screens/Job/Jobs.test.jsx b/awx/ui_next/src/screens/Job/Jobs.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/Jobs.test.jsx rename to awx/ui_next/src/screens/Job/Jobs.test.js diff --git a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutput.jsx b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutput.js similarity index 100% rename from awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutput.jsx rename to awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutput.js diff --git a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutput.test.jsx b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutput.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutput.test.jsx rename to awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutput.test.js diff --git a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputGraph.jsx b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputGraph.js similarity index 100% rename from awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputGraph.jsx rename to awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputGraph.js diff --git a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputGraph.test.jsx b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputGraph.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputGraph.test.jsx rename to awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputGraph.test.js diff --git a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputLink.jsx b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputLink.js similarity index 100% rename from awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputLink.jsx rename to awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputLink.js diff --git a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputLink.test.jsx b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputLink.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputLink.test.jsx rename to awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputLink.test.js diff --git a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputNode.jsx b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputNode.js similarity index 100% rename from awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputNode.jsx rename to awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputNode.js diff --git a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputNode.test.jsx b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputNode.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputNode.test.jsx rename to awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputNode.test.js diff --git a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.js similarity index 100% rename from awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx rename to awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.js diff --git a/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.test.jsx b/awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.test.js similarity index 100% rename from awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.test.jsx rename to awx/ui_next/src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.test.js diff --git a/awx/ui_next/src/screens/Login/Login.jsx b/awx/ui_next/src/screens/Login/Login.js similarity index 100% rename from awx/ui_next/src/screens/Login/Login.jsx rename to awx/ui_next/src/screens/Login/Login.js diff --git a/awx/ui_next/src/screens/Login/Login.test.jsx b/awx/ui_next/src/screens/Login/Login.test.js similarity index 100% rename from awx/ui_next/src/screens/Login/Login.test.jsx rename to awx/ui_next/src/screens/Login/Login.test.js diff --git a/awx/ui_next/src/screens/ManagementJob/ManagementJob.jsx b/awx/ui_next/src/screens/ManagementJob/ManagementJob.js similarity index 100% rename from awx/ui_next/src/screens/ManagementJob/ManagementJob.jsx rename to awx/ui_next/src/screens/ManagementJob/ManagementJob.js diff --git a/awx/ui_next/src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx b/awx/ui_next/src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js similarity index 100% rename from awx/ui_next/src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx rename to awx/ui_next/src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.js diff --git a/awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx b/awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobList.js similarity index 100% rename from awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx rename to awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobList.js diff --git a/awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobList.test.jsx b/awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobList.test.js similarity index 100% rename from awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobList.test.jsx rename to awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobList.test.js diff --git a/awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx b/awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.js similarity index 100% rename from awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx rename to awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.js diff --git a/awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.test.jsx b/awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.test.jsx rename to awx/ui_next/src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.test.js diff --git a/awx/ui_next/src/screens/ManagementJob/ManagementJobs.jsx b/awx/ui_next/src/screens/ManagementJob/ManagementJobs.js similarity index 100% rename from awx/ui_next/src/screens/ManagementJob/ManagementJobs.jsx rename to awx/ui_next/src/screens/ManagementJob/ManagementJobs.js diff --git a/awx/ui_next/src/screens/ManagementJob/ManagementJobs.test.jsx b/awx/ui_next/src/screens/ManagementJob/ManagementJobs.test.js similarity index 100% rename from awx/ui_next/src/screens/ManagementJob/ManagementJobs.test.jsx rename to awx/ui_next/src/screens/ManagementJob/ManagementJobs.test.js diff --git a/awx/ui_next/src/screens/Metrics/LineChart.jsx b/awx/ui_next/src/screens/Metrics/LineChart.js similarity index 100% rename from awx/ui_next/src/screens/Metrics/LineChart.jsx rename to awx/ui_next/src/screens/Metrics/LineChart.js diff --git a/awx/ui_next/src/screens/Metrics/LineChart.test.jsx b/awx/ui_next/src/screens/Metrics/LineChart.test.js similarity index 100% rename from awx/ui_next/src/screens/Metrics/LineChart.test.jsx rename to awx/ui_next/src/screens/Metrics/LineChart.test.js diff --git a/awx/ui_next/src/screens/Metrics/Metrics.jsx b/awx/ui_next/src/screens/Metrics/Metrics.js similarity index 100% rename from awx/ui_next/src/screens/Metrics/Metrics.jsx rename to awx/ui_next/src/screens/Metrics/Metrics.js diff --git a/awx/ui_next/src/screens/Metrics/Metrics.test.jsx b/awx/ui_next/src/screens/Metrics/Metrics.test.js similarity index 100% rename from awx/ui_next/src/screens/Metrics/Metrics.test.jsx rename to awx/ui_next/src/screens/Metrics/Metrics.test.js diff --git a/awx/ui_next/src/screens/NotFound.jsx b/awx/ui_next/src/screens/NotFound.js similarity index 100% rename from awx/ui_next/src/screens/NotFound.jsx rename to awx/ui_next/src/screens/NotFound.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplate.jsx b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplate.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/NotificationTemplate.jsx rename to awx/ui_next/src/screens/NotificationTemplate/NotificationTemplate.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateAdd.jsx b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateAdd.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateAdd.jsx rename to awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateAdd.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx rename to awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.test.jsx b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.test.jsx rename to awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.test.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateEdit/NotificationTemplateEdit.jsx b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateEdit/NotificationTemplateEdit.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateEdit/NotificationTemplateEdit.jsx rename to awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateEdit/NotificationTemplateEdit.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx rename to awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.test.jsx b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.test.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.test.jsx rename to awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.test.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx rename to awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.test.jsx b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.test.jsx rename to awx/ui_next/src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.test.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplates.jsx b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplates.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/NotificationTemplates.jsx rename to awx/ui_next/src/screens/NotificationTemplate/NotificationTemplates.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplates.test.jsx b/awx/ui_next/src/screens/NotificationTemplate/NotificationTemplates.test.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/NotificationTemplates.test.jsx rename to awx/ui_next/src/screens/NotificationTemplate/NotificationTemplates.test.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx b/awx/ui_next/src/screens/NotificationTemplate/shared/CustomMessagesSubForm.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx rename to awx/ui_next/src/screens/NotificationTemplate/shared/CustomMessagesSubForm.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx b/awx/ui_next/src/screens/NotificationTemplate/shared/NotificationTemplateForm.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx rename to awx/ui_next/src/screens/NotificationTemplate/shared/NotificationTemplateForm.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/shared/NotificationTemplateForm.test.jsx b/awx/ui_next/src/screens/NotificationTemplate/shared/NotificationTemplateForm.test.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/shared/NotificationTemplateForm.test.jsx rename to awx/ui_next/src/screens/NotificationTemplate/shared/NotificationTemplateForm.test.js diff --git a/awx/ui_next/src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx b/awx/ui_next/src/screens/NotificationTemplate/shared/TypeInputsSubForm.js similarity index 100% rename from awx/ui_next/src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx rename to awx/ui_next/src/screens/NotificationTemplate/shared/TypeInputsSubForm.js diff --git a/awx/ui_next/src/screens/Organization/Organization.jsx b/awx/ui_next/src/screens/Organization/Organization.js similarity index 100% rename from awx/ui_next/src/screens/Organization/Organization.jsx rename to awx/ui_next/src/screens/Organization/Organization.js diff --git a/awx/ui_next/src/screens/Organization/Organization.test.jsx b/awx/ui_next/src/screens/Organization/Organization.test.js similarity index 100% rename from awx/ui_next/src/screens/Organization/Organization.test.jsx rename to awx/ui_next/src/screens/Organization/Organization.test.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationAdd/OrganizationAdd.jsx b/awx/ui_next/src/screens/Organization/OrganizationAdd/OrganizationAdd.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationAdd/OrganizationAdd.jsx rename to awx/ui_next/src/screens/Organization/OrganizationAdd/OrganizationAdd.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationAdd/OrganizationAdd.test.jsx b/awx/ui_next/src/screens/Organization/OrganizationAdd/OrganizationAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationAdd/OrganizationAdd.test.jsx rename to awx/ui_next/src/screens/Organization/OrganizationAdd/OrganizationAdd.test.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx b/awx/ui_next/src/screens/Organization/OrganizationDetail/OrganizationDetail.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx rename to awx/ui_next/src/screens/Organization/OrganizationDetail/OrganizationDetail.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationDetail/OrganizationDetail.test.jsx b/awx/ui_next/src/screens/Organization/OrganizationDetail/OrganizationDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationDetail/OrganizationDetail.test.jsx rename to awx/ui_next/src/screens/Organization/OrganizationDetail/OrganizationDetail.test.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationEdit/OrganizationEdit.jsx b/awx/ui_next/src/screens/Organization/OrganizationEdit/OrganizationEdit.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationEdit/OrganizationEdit.jsx rename to awx/ui_next/src/screens/Organization/OrganizationEdit/OrganizationEdit.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationEdit/OrganizationEdit.test.jsx b/awx/ui_next/src/screens/Organization/OrganizationEdit/OrganizationEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationEdit/OrganizationEdit.test.jsx rename to awx/ui_next/src/screens/Organization/OrganizationEdit/OrganizationEdit.test.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx b/awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx rename to awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.test.jsx b/awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.test.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.test.jsx rename to awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.test.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx b/awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx rename to awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.test.jsx b/awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.test.jsx rename to awx/ui_next/src/screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.test.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.jsx b/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.jsx rename to awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.test.jsx b/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.test.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.test.jsx rename to awx/ui_next/src/screens/Organization/OrganizationList/OrganizationList.test.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationListItem.jsx b/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationListItem.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationList/OrganizationListItem.jsx rename to awx/ui_next/src/screens/Organization/OrganizationList/OrganizationListItem.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationListItem.test.jsx b/awx/ui_next/src/screens/Organization/OrganizationList/OrganizationListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationList/OrganizationListItem.test.jsx rename to awx/ui_next/src/screens/Organization/OrganizationList/OrganizationListItem.test.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx b/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamList.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx rename to awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamList.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamList.test.jsx b/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamList.test.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamList.test.jsx rename to awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamList.test.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx b/awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx rename to awx/ui_next/src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.js diff --git a/awx/ui_next/src/screens/Organization/OrganizationTeams/OrgnizationTeamListItem.test.jsx b/awx/ui_next/src/screens/Organization/OrganizationTeams/OrgnizationTeamListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Organization/OrganizationTeams/OrgnizationTeamListItem.test.jsx rename to awx/ui_next/src/screens/Organization/OrganizationTeams/OrgnizationTeamListItem.test.js diff --git a/awx/ui_next/src/screens/Organization/Organizations.jsx b/awx/ui_next/src/screens/Organization/Organizations.js similarity index 100% rename from awx/ui_next/src/screens/Organization/Organizations.jsx rename to awx/ui_next/src/screens/Organization/Organizations.js diff --git a/awx/ui_next/src/screens/Organization/Organizations.test.jsx b/awx/ui_next/src/screens/Organization/Organizations.test.js similarity index 100% rename from awx/ui_next/src/screens/Organization/Organizations.test.jsx rename to awx/ui_next/src/screens/Organization/Organizations.test.js diff --git a/awx/ui_next/src/screens/Organization/shared/OrganizationForm.jsx b/awx/ui_next/src/screens/Organization/shared/OrganizationForm.js similarity index 100% rename from awx/ui_next/src/screens/Organization/shared/OrganizationForm.jsx rename to awx/ui_next/src/screens/Organization/shared/OrganizationForm.js diff --git a/awx/ui_next/src/screens/Organization/shared/OrganizationForm.test.jsx b/awx/ui_next/src/screens/Organization/shared/OrganizationForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Organization/shared/OrganizationForm.test.jsx rename to awx/ui_next/src/screens/Organization/shared/OrganizationForm.test.js diff --git a/awx/ui_next/src/screens/Project/Project.jsx b/awx/ui_next/src/screens/Project/Project.js similarity index 100% rename from awx/ui_next/src/screens/Project/Project.jsx rename to awx/ui_next/src/screens/Project/Project.js diff --git a/awx/ui_next/src/screens/Project/Project.test.jsx b/awx/ui_next/src/screens/Project/Project.test.js similarity index 100% rename from awx/ui_next/src/screens/Project/Project.test.jsx rename to awx/ui_next/src/screens/Project/Project.test.js diff --git a/awx/ui_next/src/screens/Project/ProjectAdd/ProjectAdd.jsx b/awx/ui_next/src/screens/Project/ProjectAdd/ProjectAdd.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectAdd/ProjectAdd.jsx rename to awx/ui_next/src/screens/Project/ProjectAdd/ProjectAdd.js diff --git a/awx/ui_next/src/screens/Project/ProjectAdd/ProjectAdd.test.jsx b/awx/ui_next/src/screens/Project/ProjectAdd/ProjectAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectAdd/ProjectAdd.test.jsx rename to awx/ui_next/src/screens/Project/ProjectAdd/ProjectAdd.test.js diff --git a/awx/ui_next/src/screens/Project/ProjectDetail/ProjectDetail.jsx b/awx/ui_next/src/screens/Project/ProjectDetail/ProjectDetail.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectDetail/ProjectDetail.jsx rename to awx/ui_next/src/screens/Project/ProjectDetail/ProjectDetail.js diff --git a/awx/ui_next/src/screens/Project/ProjectDetail/ProjectDetail.test.jsx b/awx/ui_next/src/screens/Project/ProjectDetail/ProjectDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectDetail/ProjectDetail.test.jsx rename to awx/ui_next/src/screens/Project/ProjectDetail/ProjectDetail.test.js diff --git a/awx/ui_next/src/screens/Project/ProjectDetail/useWsProject.test.jsx b/awx/ui_next/src/screens/Project/ProjectDetail/useWsProject.test.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectDetail/useWsProject.test.jsx rename to awx/ui_next/src/screens/Project/ProjectDetail/useWsProject.test.js diff --git a/awx/ui_next/src/screens/Project/ProjectEdit/ProjectEdit.jsx b/awx/ui_next/src/screens/Project/ProjectEdit/ProjectEdit.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectEdit/ProjectEdit.jsx rename to awx/ui_next/src/screens/Project/ProjectEdit/ProjectEdit.js diff --git a/awx/ui_next/src/screens/Project/ProjectEdit/ProjectEdit.test.jsx b/awx/ui_next/src/screens/Project/ProjectEdit/ProjectEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectEdit/ProjectEdit.test.jsx rename to awx/ui_next/src/screens/Project/ProjectEdit/ProjectEdit.test.js diff --git a/awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx b/awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx rename to awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.js diff --git a/awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx b/awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx rename to awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.js diff --git a/awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.test.jsx b/awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.test.jsx rename to awx/ui_next/src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.test.js diff --git a/awx/ui_next/src/screens/Project/ProjectList/ProjectList.jsx b/awx/ui_next/src/screens/Project/ProjectList/ProjectList.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectList/ProjectList.jsx rename to awx/ui_next/src/screens/Project/ProjectList/ProjectList.js diff --git a/awx/ui_next/src/screens/Project/ProjectList/ProjectList.test.jsx b/awx/ui_next/src/screens/Project/ProjectList/ProjectList.test.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectList/ProjectList.test.jsx rename to awx/ui_next/src/screens/Project/ProjectList/ProjectList.test.js diff --git a/awx/ui_next/src/screens/Project/ProjectList/ProjectListItem.jsx b/awx/ui_next/src/screens/Project/ProjectList/ProjectListItem.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectList/ProjectListItem.jsx rename to awx/ui_next/src/screens/Project/ProjectList/ProjectListItem.js diff --git a/awx/ui_next/src/screens/Project/ProjectList/ProjectListItem.test.jsx b/awx/ui_next/src/screens/Project/ProjectList/ProjectListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectList/ProjectListItem.test.jsx rename to awx/ui_next/src/screens/Project/ProjectList/ProjectListItem.test.js diff --git a/awx/ui_next/src/screens/Project/ProjectList/useWsProjects.test.jsx b/awx/ui_next/src/screens/Project/ProjectList/useWsProjects.test.js similarity index 100% rename from awx/ui_next/src/screens/Project/ProjectList/useWsProjects.test.jsx rename to awx/ui_next/src/screens/Project/ProjectList/useWsProjects.test.js diff --git a/awx/ui_next/src/screens/Project/Projects.jsx b/awx/ui_next/src/screens/Project/Projects.js similarity index 100% rename from awx/ui_next/src/screens/Project/Projects.jsx rename to awx/ui_next/src/screens/Project/Projects.js diff --git a/awx/ui_next/src/screens/Project/Projects.test.jsx b/awx/ui_next/src/screens/Project/Projects.test.js similarity index 100% rename from awx/ui_next/src/screens/Project/Projects.test.jsx rename to awx/ui_next/src/screens/Project/Projects.test.js diff --git a/awx/ui_next/src/screens/Project/shared/ProjectForm.jsx b/awx/ui_next/src/screens/Project/shared/ProjectForm.js similarity index 100% rename from awx/ui_next/src/screens/Project/shared/ProjectForm.jsx rename to awx/ui_next/src/screens/Project/shared/ProjectForm.js diff --git a/awx/ui_next/src/screens/Project/shared/ProjectForm.test.jsx b/awx/ui_next/src/screens/Project/shared/ProjectForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Project/shared/ProjectForm.test.jsx rename to awx/ui_next/src/screens/Project/shared/ProjectForm.test.js diff --git a/awx/ui_next/src/screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx b/awx/ui_next/src/screens/Project/shared/ProjectSubForms/ArchiveSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx rename to awx/ui_next/src/screens/Project/shared/ProjectSubForms/ArchiveSubForm.js diff --git a/awx/ui_next/src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx b/awx/ui_next/src/screens/Project/shared/ProjectSubForms/GitSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx rename to awx/ui_next/src/screens/Project/shared/ProjectSubForms/GitSubForm.js diff --git a/awx/ui_next/src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx b/awx/ui_next/src/screens/Project/shared/ProjectSubForms/InsightsSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx rename to awx/ui_next/src/screens/Project/shared/ProjectSubForms/InsightsSubForm.js diff --git a/awx/ui_next/src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx b/awx/ui_next/src/screens/Project/shared/ProjectSubForms/ManualSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx rename to awx/ui_next/src/screens/Project/shared/ProjectSubForms/ManualSubForm.js diff --git a/awx/ui_next/src/screens/Project/shared/ProjectSubForms/SharedFields.jsx b/awx/ui_next/src/screens/Project/shared/ProjectSubForms/SharedFields.js similarity index 100% rename from awx/ui_next/src/screens/Project/shared/ProjectSubForms/SharedFields.jsx rename to awx/ui_next/src/screens/Project/shared/ProjectSubForms/SharedFields.js diff --git a/awx/ui_next/src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx b/awx/ui_next/src/screens/Project/shared/ProjectSubForms/SvnSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx rename to awx/ui_next/src/screens/Project/shared/ProjectSubForms/SvnSubForm.js diff --git a/awx/ui_next/src/screens/Project/shared/ProjectSyncButton.jsx b/awx/ui_next/src/screens/Project/shared/ProjectSyncButton.js similarity index 100% rename from awx/ui_next/src/screens/Project/shared/ProjectSyncButton.jsx rename to awx/ui_next/src/screens/Project/shared/ProjectSyncButton.js diff --git a/awx/ui_next/src/screens/Project/shared/ProjectSyncButton.test.jsx b/awx/ui_next/src/screens/Project/shared/ProjectSyncButton.test.js similarity index 100% rename from awx/ui_next/src/screens/Project/shared/ProjectSyncButton.test.jsx rename to awx/ui_next/src/screens/Project/shared/ProjectSyncButton.test.js diff --git a/awx/ui_next/src/screens/Schedule/AllSchedules.jsx b/awx/ui_next/src/screens/Schedule/AllSchedules.js similarity index 100% rename from awx/ui_next/src/screens/Schedule/AllSchedules.jsx rename to awx/ui_next/src/screens/Schedule/AllSchedules.js diff --git a/awx/ui_next/src/screens/Schedule/AllSchedules.test.jsx b/awx/ui_next/src/screens/Schedule/AllSchedules.test.js similarity index 100% rename from awx/ui_next/src/screens/Schedule/AllSchedules.test.jsx rename to awx/ui_next/src/screens/Schedule/AllSchedules.test.js diff --git a/awx/ui_next/src/screens/Setting/AzureAD/AzureAD.jsx b/awx/ui_next/src/screens/Setting/AzureAD/AzureAD.js similarity index 100% rename from awx/ui_next/src/screens/Setting/AzureAD/AzureAD.jsx rename to awx/ui_next/src/screens/Setting/AzureAD/AzureAD.js diff --git a/awx/ui_next/src/screens/Setting/AzureAD/AzureAD.test.jsx b/awx/ui_next/src/screens/Setting/AzureAD/AzureAD.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/AzureAD/AzureAD.test.jsx rename to awx/ui_next/src/screens/Setting/AzureAD/AzureAD.test.js diff --git a/awx/ui_next/src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx b/awx/ui_next/src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx rename to awx/ui_next/src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.js diff --git a/awx/ui_next/src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.test.jsx b/awx/ui_next/src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.test.jsx rename to awx/ui_next/src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.test.js diff --git a/awx/ui_next/src/screens/Setting/AzureAD/AzureADEdit/AzureADEdit.jsx b/awx/ui_next/src/screens/Setting/AzureAD/AzureADEdit/AzureADEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/AzureAD/AzureADEdit/AzureADEdit.jsx rename to awx/ui_next/src/screens/Setting/AzureAD/AzureADEdit/AzureADEdit.js diff --git a/awx/ui_next/src/screens/Setting/AzureAD/AzureADEdit/AzureADEdit.test.jsx b/awx/ui_next/src/screens/Setting/AzureAD/AzureADEdit/AzureADEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/AzureAD/AzureADEdit/AzureADEdit.test.jsx rename to awx/ui_next/src/screens/Setting/AzureAD/AzureADEdit/AzureADEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHub.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHub.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHub.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHub.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHub.test.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHub.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHub.test.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHub.test.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.test.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.test.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.test.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubEdit/GitHubEdit.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubEdit/GitHubEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubEdit/GitHubEdit.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubEdit/GitHubEdit.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubEdit/GitHubEdit.test.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubEdit/GitHubEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubEdit/GitHubEdit.test.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubEdit/GitHubEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseEdit/GitHubEnterpriseEdit.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseEdit/GitHubEnterpriseEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseEdit/GitHubEnterpriseEdit.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseEdit/GitHubEnterpriseEdit.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseEdit/GitHubEnterpriseEdit.test.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseEdit/GitHubEnterpriseEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseEdit/GitHubEnterpriseEdit.test.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseEdit/GitHubEnterpriseEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseOrgEdit/GitHubEnterpriseOrgEdit.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseOrgEdit/GitHubEnterpriseOrgEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseOrgEdit/GitHubEnterpriseOrgEdit.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseOrgEdit/GitHubEnterpriseOrgEdit.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseOrgEdit/GitHubEnterpriseOrgEdit.test.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseOrgEdit/GitHubEnterpriseOrgEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseOrgEdit/GitHubEnterpriseOrgEdit.test.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseOrgEdit/GitHubEnterpriseOrgEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseTeamEdit/GitHubEnterpriseTeamEdit.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseTeamEdit/GitHubEnterpriseTeamEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseTeamEdit/GitHubEnterpriseTeamEdit.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseTeamEdit/GitHubEnterpriseTeamEdit.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseTeamEdit/GitHubEnterpriseTeamEdit.test.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseTeamEdit/GitHubEnterpriseTeamEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseTeamEdit/GitHubEnterpriseTeamEdit.test.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubEnterpriseTeamEdit/GitHubEnterpriseTeamEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubOrgEdit/GitHubOrgEdit.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubOrgEdit/GitHubOrgEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubOrgEdit/GitHubOrgEdit.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubOrgEdit/GitHubOrgEdit.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubOrgEdit/GitHubOrgEdit.test.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubOrgEdit/GitHubOrgEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubOrgEdit/GitHubOrgEdit.test.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubOrgEdit/GitHubOrgEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubTeamEdit/GitHubTeamEdit.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubTeamEdit/GitHubTeamEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubTeamEdit/GitHubTeamEdit.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubTeamEdit/GitHubTeamEdit.js diff --git a/awx/ui_next/src/screens/Setting/GitHub/GitHubTeamEdit/GitHubTeamEdit.test.jsx b/awx/ui_next/src/screens/Setting/GitHub/GitHubTeamEdit/GitHubTeamEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GitHub/GitHubTeamEdit/GitHubTeamEdit.test.jsx rename to awx/ui_next/src/screens/Setting/GitHub/GitHubTeamEdit/GitHubTeamEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx b/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx rename to awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2.js diff --git a/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2.test.jsx b/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2.test.jsx rename to awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2.test.js diff --git a/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx b/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx rename to awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.js diff --git a/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.test.jsx b/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.test.jsx rename to awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.test.js diff --git a/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Edit/GoogleOAuth2Edit.jsx b/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Edit/GoogleOAuth2Edit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Edit/GoogleOAuth2Edit.jsx rename to awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Edit/GoogleOAuth2Edit.js diff --git a/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Edit/GoogleOAuth2Edit.test.jsx b/awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Edit/GoogleOAuth2Edit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Edit/GoogleOAuth2Edit.test.jsx rename to awx/ui_next/src/screens/Setting/GoogleOAuth2/GoogleOAuth2Edit/GoogleOAuth2Edit.test.js diff --git a/awx/ui_next/src/screens/Setting/Jobs/Jobs.jsx b/awx/ui_next/src/screens/Setting/Jobs/Jobs.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Jobs/Jobs.jsx rename to awx/ui_next/src/screens/Setting/Jobs/Jobs.js diff --git a/awx/ui_next/src/screens/Setting/Jobs/Jobs.test.jsx b/awx/ui_next/src/screens/Setting/Jobs/Jobs.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Jobs/Jobs.test.jsx rename to awx/ui_next/src/screens/Setting/Jobs/Jobs.test.js diff --git a/awx/ui_next/src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx b/awx/ui_next/src/screens/Setting/Jobs/JobsDetail/JobsDetail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx rename to awx/ui_next/src/screens/Setting/Jobs/JobsDetail/JobsDetail.js diff --git a/awx/ui_next/src/screens/Setting/Jobs/JobsDetail/JobsDetail.test.jsx b/awx/ui_next/src/screens/Setting/Jobs/JobsDetail/JobsDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Jobs/JobsDetail/JobsDetail.test.jsx rename to awx/ui_next/src/screens/Setting/Jobs/JobsDetail/JobsDetail.test.js diff --git a/awx/ui_next/src/screens/Setting/Jobs/JobsEdit/JobsEdit.jsx b/awx/ui_next/src/screens/Setting/Jobs/JobsEdit/JobsEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Jobs/JobsEdit/JobsEdit.jsx rename to awx/ui_next/src/screens/Setting/Jobs/JobsEdit/JobsEdit.js diff --git a/awx/ui_next/src/screens/Setting/Jobs/JobsEdit/JobsEdit.test.jsx b/awx/ui_next/src/screens/Setting/Jobs/JobsEdit/JobsEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Jobs/JobsEdit/JobsEdit.test.jsx rename to awx/ui_next/src/screens/Setting/Jobs/JobsEdit/JobsEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/LDAP/LDAP.jsx b/awx/ui_next/src/screens/Setting/LDAP/LDAP.js similarity index 100% rename from awx/ui_next/src/screens/Setting/LDAP/LDAP.jsx rename to awx/ui_next/src/screens/Setting/LDAP/LDAP.js diff --git a/awx/ui_next/src/screens/Setting/LDAP/LDAP.test.jsx b/awx/ui_next/src/screens/Setting/LDAP/LDAP.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/LDAP/LDAP.test.jsx rename to awx/ui_next/src/screens/Setting/LDAP/LDAP.test.js diff --git a/awx/ui_next/src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx b/awx/ui_next/src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx rename to awx/ui_next/src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.js diff --git a/awx/ui_next/src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.test.jsx b/awx/ui_next/src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.test.jsx rename to awx/ui_next/src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.test.js diff --git a/awx/ui_next/src/screens/Setting/LDAP/LDAPEdit/LDAPEdit.jsx b/awx/ui_next/src/screens/Setting/LDAP/LDAPEdit/LDAPEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/LDAP/LDAPEdit/LDAPEdit.jsx rename to awx/ui_next/src/screens/Setting/LDAP/LDAPEdit/LDAPEdit.js diff --git a/awx/ui_next/src/screens/Setting/LDAP/LDAPEdit/LDAPEdit.test.jsx b/awx/ui_next/src/screens/Setting/LDAP/LDAPEdit/LDAPEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/LDAP/LDAPEdit/LDAPEdit.test.jsx rename to awx/ui_next/src/screens/Setting/LDAP/LDAPEdit/LDAPEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/Logging/Logging.jsx b/awx/ui_next/src/screens/Setting/Logging/Logging.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Logging/Logging.jsx rename to awx/ui_next/src/screens/Setting/Logging/Logging.js diff --git a/awx/ui_next/src/screens/Setting/Logging/Logging.test.jsx b/awx/ui_next/src/screens/Setting/Logging/Logging.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Logging/Logging.test.jsx rename to awx/ui_next/src/screens/Setting/Logging/Logging.test.js diff --git a/awx/ui_next/src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx b/awx/ui_next/src/screens/Setting/Logging/LoggingDetail/LoggingDetail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx rename to awx/ui_next/src/screens/Setting/Logging/LoggingDetail/LoggingDetail.js diff --git a/awx/ui_next/src/screens/Setting/Logging/LoggingDetail/LoggingDetail.test.jsx b/awx/ui_next/src/screens/Setting/Logging/LoggingDetail/LoggingDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Logging/LoggingDetail/LoggingDetail.test.jsx rename to awx/ui_next/src/screens/Setting/Logging/LoggingDetail/LoggingDetail.test.js diff --git a/awx/ui_next/src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx b/awx/ui_next/src/screens/Setting/Logging/LoggingEdit/LoggingEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx rename to awx/ui_next/src/screens/Setting/Logging/LoggingEdit/LoggingEdit.js diff --git a/awx/ui_next/src/screens/Setting/Logging/LoggingEdit/LoggingEdit.test.jsx b/awx/ui_next/src/screens/Setting/Logging/LoggingEdit/LoggingEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Logging/LoggingEdit/LoggingEdit.test.jsx rename to awx/ui_next/src/screens/Setting/Logging/LoggingEdit/LoggingEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthentication.jsx b/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthentication.js similarity index 100% rename from awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthentication.jsx rename to awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthentication.js diff --git a/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthentication.test.jsx b/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthentication.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthentication.test.jsx rename to awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthentication.test.js diff --git a/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.jsx b/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.jsx rename to awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.js diff --git a/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.test.jsx b/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.test.jsx rename to awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationDetail/MiscAuthenticationDetail.test.js diff --git a/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.jsx b/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.jsx rename to awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.js diff --git a/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.test.jsx b/awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.test.jsx rename to awx/ui_next/src/screens/Setting/MiscAuthentication/MiscAuthenticationEdit/MiscAuthenticationEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystem.jsx b/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystem.js similarity index 100% rename from awx/ui_next/src/screens/Setting/MiscSystem/MiscSystem.jsx rename to awx/ui_next/src/screens/Setting/MiscSystem/MiscSystem.js diff --git a/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystem.test.jsx b/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystem.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/MiscSystem/MiscSystem.test.jsx rename to awx/ui_next/src/screens/Setting/MiscSystem/MiscSystem.test.js diff --git a/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx b/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx rename to awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.js diff --git a/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.test.jsx b/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.test.jsx rename to awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.test.js diff --git a/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx b/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx rename to awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.js diff --git a/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.test.jsx b/awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.test.jsx rename to awx/ui_next/src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/RADIUS/RADIUS.jsx b/awx/ui_next/src/screens/Setting/RADIUS/RADIUS.js similarity index 100% rename from awx/ui_next/src/screens/Setting/RADIUS/RADIUS.jsx rename to awx/ui_next/src/screens/Setting/RADIUS/RADIUS.js diff --git a/awx/ui_next/src/screens/Setting/RADIUS/RADIUS.test.jsx b/awx/ui_next/src/screens/Setting/RADIUS/RADIUS.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/RADIUS/RADIUS.test.jsx rename to awx/ui_next/src/screens/Setting/RADIUS/RADIUS.test.js diff --git a/awx/ui_next/src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx b/awx/ui_next/src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx rename to awx/ui_next/src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.js diff --git a/awx/ui_next/src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.test.jsx b/awx/ui_next/src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.test.jsx rename to awx/ui_next/src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.test.js diff --git a/awx/ui_next/src/screens/Setting/RADIUS/RADIUSEdit/RADIUSEdit.jsx b/awx/ui_next/src/screens/Setting/RADIUS/RADIUSEdit/RADIUSEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/RADIUS/RADIUSEdit/RADIUSEdit.jsx rename to awx/ui_next/src/screens/Setting/RADIUS/RADIUSEdit/RADIUSEdit.js diff --git a/awx/ui_next/src/screens/Setting/RADIUS/RADIUSEdit/RADIUSEdit.test.jsx b/awx/ui_next/src/screens/Setting/RADIUS/RADIUSEdit/RADIUSEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/RADIUS/RADIUSEdit/RADIUSEdit.test.jsx rename to awx/ui_next/src/screens/Setting/RADIUS/RADIUSEdit/RADIUSEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/SAML/SAML.jsx b/awx/ui_next/src/screens/Setting/SAML/SAML.js similarity index 100% rename from awx/ui_next/src/screens/Setting/SAML/SAML.jsx rename to awx/ui_next/src/screens/Setting/SAML/SAML.js diff --git a/awx/ui_next/src/screens/Setting/SAML/SAML.test.jsx b/awx/ui_next/src/screens/Setting/SAML/SAML.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/SAML/SAML.test.jsx rename to awx/ui_next/src/screens/Setting/SAML/SAML.test.js diff --git a/awx/ui_next/src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx b/awx/ui_next/src/screens/Setting/SAML/SAMLDetail/SAMLDetail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx rename to awx/ui_next/src/screens/Setting/SAML/SAMLDetail/SAMLDetail.js diff --git a/awx/ui_next/src/screens/Setting/SAML/SAMLDetail/SAMLDetail.test.jsx b/awx/ui_next/src/screens/Setting/SAML/SAMLDetail/SAMLDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/SAML/SAMLDetail/SAMLDetail.test.jsx rename to awx/ui_next/src/screens/Setting/SAML/SAMLDetail/SAMLDetail.test.js diff --git a/awx/ui_next/src/screens/Setting/SAML/SAMLEdit/SAMLEdit.jsx b/awx/ui_next/src/screens/Setting/SAML/SAMLEdit/SAMLEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/SAML/SAMLEdit/SAMLEdit.jsx rename to awx/ui_next/src/screens/Setting/SAML/SAMLEdit/SAMLEdit.js diff --git a/awx/ui_next/src/screens/Setting/SAML/SAMLEdit/SAMLEdit.test.jsx b/awx/ui_next/src/screens/Setting/SAML/SAMLEdit/SAMLEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/SAML/SAMLEdit/SAMLEdit.test.jsx rename to awx/ui_next/src/screens/Setting/SAML/SAMLEdit/SAMLEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/SettingList.jsx b/awx/ui_next/src/screens/Setting/SettingList.js similarity index 100% rename from awx/ui_next/src/screens/Setting/SettingList.jsx rename to awx/ui_next/src/screens/Setting/SettingList.js diff --git a/awx/ui_next/src/screens/Setting/SettingList.test.jsx b/awx/ui_next/src/screens/Setting/SettingList.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/SettingList.test.jsx rename to awx/ui_next/src/screens/Setting/SettingList.test.js diff --git a/awx/ui_next/src/screens/Setting/Settings.jsx b/awx/ui_next/src/screens/Setting/Settings.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Settings.jsx rename to awx/ui_next/src/screens/Setting/Settings.js diff --git a/awx/ui_next/src/screens/Setting/Settings.test.jsx b/awx/ui_next/src/screens/Setting/Settings.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Settings.test.jsx rename to awx/ui_next/src/screens/Setting/Settings.test.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/Subscription.jsx b/awx/ui_next/src/screens/Setting/Subscription/Subscription.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/Subscription.jsx rename to awx/ui_next/src/screens/Setting/Subscription/Subscription.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/Subscription.test.jsx b/awx/ui_next/src/screens/Setting/Subscription/Subscription.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/Subscription.test.jsx rename to awx/ui_next/src/screens/Setting/Subscription/Subscription.test.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx rename to awx/ui_next/src/screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.test.jsx b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.test.jsx rename to awx/ui_next/src/screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.test.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx rename to awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.test.jsx b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.test.jsx rename to awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.test.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/EulaStep.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/EulaStep.jsx rename to awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/EulaStep.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/EulaStep.test.jsx b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/EulaStep.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/EulaStep.test.jsx rename to awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/EulaStep.test.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx rename to awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.test.jsx b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.test.jsx rename to awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx rename to awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.test.jsx b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.test.jsx rename to awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.test.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx rename to awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.js diff --git a/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.test.jsx b/awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.test.jsx rename to awx/ui_next/src/screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.test.js diff --git a/awx/ui_next/src/screens/Setting/TACACS/TACACS.jsx b/awx/ui_next/src/screens/Setting/TACACS/TACACS.js similarity index 100% rename from awx/ui_next/src/screens/Setting/TACACS/TACACS.jsx rename to awx/ui_next/src/screens/Setting/TACACS/TACACS.js diff --git a/awx/ui_next/src/screens/Setting/TACACS/TACACS.test.jsx b/awx/ui_next/src/screens/Setting/TACACS/TACACS.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/TACACS/TACACS.test.jsx rename to awx/ui_next/src/screens/Setting/TACACS/TACACS.test.js diff --git a/awx/ui_next/src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx b/awx/ui_next/src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx rename to awx/ui_next/src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.js diff --git a/awx/ui_next/src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.test.jsx b/awx/ui_next/src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.test.jsx rename to awx/ui_next/src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.test.js diff --git a/awx/ui_next/src/screens/Setting/TACACS/TACACSEdit/TACACSEdit.jsx b/awx/ui_next/src/screens/Setting/TACACS/TACACSEdit/TACACSEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/TACACS/TACACSEdit/TACACSEdit.jsx rename to awx/ui_next/src/screens/Setting/TACACS/TACACSEdit/TACACSEdit.js diff --git a/awx/ui_next/src/screens/Setting/TACACS/TACACSEdit/TACACSEdit.test.jsx b/awx/ui_next/src/screens/Setting/TACACS/TACACSEdit/TACACSEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/TACACS/TACACSEdit/TACACSEdit.test.jsx rename to awx/ui_next/src/screens/Setting/TACACS/TACACSEdit/TACACSEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/UI/UI.jsx b/awx/ui_next/src/screens/Setting/UI/UI.js similarity index 100% rename from awx/ui_next/src/screens/Setting/UI/UI.jsx rename to awx/ui_next/src/screens/Setting/UI/UI.js diff --git a/awx/ui_next/src/screens/Setting/UI/UI.test.jsx b/awx/ui_next/src/screens/Setting/UI/UI.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/UI/UI.test.jsx rename to awx/ui_next/src/screens/Setting/UI/UI.test.js diff --git a/awx/ui_next/src/screens/Setting/UI/UIDetail/UIDetail.jsx b/awx/ui_next/src/screens/Setting/UI/UIDetail/UIDetail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/UI/UIDetail/UIDetail.jsx rename to awx/ui_next/src/screens/Setting/UI/UIDetail/UIDetail.js diff --git a/awx/ui_next/src/screens/Setting/UI/UIDetail/UIDetail.test.jsx b/awx/ui_next/src/screens/Setting/UI/UIDetail/UIDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/UI/UIDetail/UIDetail.test.jsx rename to awx/ui_next/src/screens/Setting/UI/UIDetail/UIDetail.test.js diff --git a/awx/ui_next/src/screens/Setting/UI/UIEdit/UIEdit.jsx b/awx/ui_next/src/screens/Setting/UI/UIEdit/UIEdit.js similarity index 100% rename from awx/ui_next/src/screens/Setting/UI/UIEdit/UIEdit.jsx rename to awx/ui_next/src/screens/Setting/UI/UIEdit/UIEdit.js diff --git a/awx/ui_next/src/screens/Setting/UI/UIEdit/UIEdit.test.jsx b/awx/ui_next/src/screens/Setting/UI/UIEdit/UIEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/UI/UIEdit/UIEdit.test.jsx rename to awx/ui_next/src/screens/Setting/UI/UIEdit/UIEdit.test.js diff --git a/awx/ui_next/src/screens/Setting/shared/RevertAllAlert.jsx b/awx/ui_next/src/screens/Setting/shared/RevertAllAlert.js similarity index 100% rename from awx/ui_next/src/screens/Setting/shared/RevertAllAlert.jsx rename to awx/ui_next/src/screens/Setting/shared/RevertAllAlert.js diff --git a/awx/ui_next/src/screens/Setting/shared/RevertAllAlert.test.jsx b/awx/ui_next/src/screens/Setting/shared/RevertAllAlert.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/shared/RevertAllAlert.test.jsx rename to awx/ui_next/src/screens/Setting/shared/RevertAllAlert.test.js diff --git a/awx/ui_next/src/screens/Setting/shared/RevertButton.jsx b/awx/ui_next/src/screens/Setting/shared/RevertButton.js similarity index 100% rename from awx/ui_next/src/screens/Setting/shared/RevertButton.jsx rename to awx/ui_next/src/screens/Setting/shared/RevertButton.js diff --git a/awx/ui_next/src/screens/Setting/shared/RevertButton.test.jsx b/awx/ui_next/src/screens/Setting/shared/RevertButton.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/shared/RevertButton.test.jsx rename to awx/ui_next/src/screens/Setting/shared/RevertButton.test.js diff --git a/awx/ui_next/src/screens/Setting/shared/RevertFormActionGroup.jsx b/awx/ui_next/src/screens/Setting/shared/RevertFormActionGroup.js similarity index 100% rename from awx/ui_next/src/screens/Setting/shared/RevertFormActionGroup.jsx rename to awx/ui_next/src/screens/Setting/shared/RevertFormActionGroup.js diff --git a/awx/ui_next/src/screens/Setting/shared/RevertFormActionGroup.test.jsx b/awx/ui_next/src/screens/Setting/shared/RevertFormActionGroup.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/shared/RevertFormActionGroup.test.jsx rename to awx/ui_next/src/screens/Setting/shared/RevertFormActionGroup.test.js diff --git a/awx/ui_next/src/screens/Setting/shared/SettingDetail.jsx b/awx/ui_next/src/screens/Setting/shared/SettingDetail.js similarity index 100% rename from awx/ui_next/src/screens/Setting/shared/SettingDetail.jsx rename to awx/ui_next/src/screens/Setting/shared/SettingDetail.js diff --git a/awx/ui_next/src/screens/Setting/shared/SharedFields.jsx b/awx/ui_next/src/screens/Setting/shared/SharedFields.js similarity index 100% rename from awx/ui_next/src/screens/Setting/shared/SharedFields.jsx rename to awx/ui_next/src/screens/Setting/shared/SharedFields.js diff --git a/awx/ui_next/src/screens/Setting/shared/SharedFields.test.jsx b/awx/ui_next/src/screens/Setting/shared/SharedFields.test.js similarity index 100% rename from awx/ui_next/src/screens/Setting/shared/SharedFields.test.jsx rename to awx/ui_next/src/screens/Setting/shared/SharedFields.test.js diff --git a/awx/ui_next/src/screens/Team/Team.jsx b/awx/ui_next/src/screens/Team/Team.js similarity index 100% rename from awx/ui_next/src/screens/Team/Team.jsx rename to awx/ui_next/src/screens/Team/Team.js diff --git a/awx/ui_next/src/screens/Team/Team.test.jsx b/awx/ui_next/src/screens/Team/Team.test.js similarity index 100% rename from awx/ui_next/src/screens/Team/Team.test.jsx rename to awx/ui_next/src/screens/Team/Team.test.js diff --git a/awx/ui_next/src/screens/Team/TeamAdd/TeamAdd.jsx b/awx/ui_next/src/screens/Team/TeamAdd/TeamAdd.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamAdd/TeamAdd.jsx rename to awx/ui_next/src/screens/Team/TeamAdd/TeamAdd.js diff --git a/awx/ui_next/src/screens/Team/TeamAdd/TeamAdd.test.jsx b/awx/ui_next/src/screens/Team/TeamAdd/TeamAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamAdd/TeamAdd.test.jsx rename to awx/ui_next/src/screens/Team/TeamAdd/TeamAdd.test.js diff --git a/awx/ui_next/src/screens/Team/TeamDetail/TeamDetail.jsx b/awx/ui_next/src/screens/Team/TeamDetail/TeamDetail.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamDetail/TeamDetail.jsx rename to awx/ui_next/src/screens/Team/TeamDetail/TeamDetail.js diff --git a/awx/ui_next/src/screens/Team/TeamDetail/TeamDetail.test.jsx b/awx/ui_next/src/screens/Team/TeamDetail/TeamDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamDetail/TeamDetail.test.jsx rename to awx/ui_next/src/screens/Team/TeamDetail/TeamDetail.test.js diff --git a/awx/ui_next/src/screens/Team/TeamEdit/TeamEdit.jsx b/awx/ui_next/src/screens/Team/TeamEdit/TeamEdit.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamEdit/TeamEdit.jsx rename to awx/ui_next/src/screens/Team/TeamEdit/TeamEdit.js diff --git a/awx/ui_next/src/screens/Team/TeamEdit/TeamEdit.test.jsx b/awx/ui_next/src/screens/Team/TeamEdit/TeamEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamEdit/TeamEdit.test.jsx rename to awx/ui_next/src/screens/Team/TeamEdit/TeamEdit.test.js diff --git a/awx/ui_next/src/screens/Team/TeamList/TeamList.jsx b/awx/ui_next/src/screens/Team/TeamList/TeamList.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamList/TeamList.jsx rename to awx/ui_next/src/screens/Team/TeamList/TeamList.js diff --git a/awx/ui_next/src/screens/Team/TeamList/TeamList.test.jsx b/awx/ui_next/src/screens/Team/TeamList/TeamList.test.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamList/TeamList.test.jsx rename to awx/ui_next/src/screens/Team/TeamList/TeamList.test.js diff --git a/awx/ui_next/src/screens/Team/TeamList/TeamListItem.jsx b/awx/ui_next/src/screens/Team/TeamList/TeamListItem.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamList/TeamListItem.jsx rename to awx/ui_next/src/screens/Team/TeamList/TeamListItem.js diff --git a/awx/ui_next/src/screens/Team/TeamList/TeamListItem.test.jsx b/awx/ui_next/src/screens/Team/TeamList/TeamListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamList/TeamListItem.test.jsx rename to awx/ui_next/src/screens/Team/TeamList/TeamListItem.test.js diff --git a/awx/ui_next/src/screens/Team/TeamRoles/TeamRoleListItem.jsx b/awx/ui_next/src/screens/Team/TeamRoles/TeamRoleListItem.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamRoles/TeamRoleListItem.jsx rename to awx/ui_next/src/screens/Team/TeamRoles/TeamRoleListItem.js diff --git a/awx/ui_next/src/screens/Team/TeamRoles/TeamRoleListItem.test.jsx b/awx/ui_next/src/screens/Team/TeamRoles/TeamRoleListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamRoles/TeamRoleListItem.test.jsx rename to awx/ui_next/src/screens/Team/TeamRoles/TeamRoleListItem.test.js diff --git a/awx/ui_next/src/screens/Team/TeamRoles/TeamRolesList.jsx b/awx/ui_next/src/screens/Team/TeamRoles/TeamRolesList.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamRoles/TeamRolesList.jsx rename to awx/ui_next/src/screens/Team/TeamRoles/TeamRolesList.js diff --git a/awx/ui_next/src/screens/Team/TeamRoles/TeamRolesList.test.jsx b/awx/ui_next/src/screens/Team/TeamRoles/TeamRolesList.test.js similarity index 100% rename from awx/ui_next/src/screens/Team/TeamRoles/TeamRolesList.test.jsx rename to awx/ui_next/src/screens/Team/TeamRoles/TeamRolesList.test.js diff --git a/awx/ui_next/src/screens/Team/Teams.jsx b/awx/ui_next/src/screens/Team/Teams.js similarity index 100% rename from awx/ui_next/src/screens/Team/Teams.jsx rename to awx/ui_next/src/screens/Team/Teams.js diff --git a/awx/ui_next/src/screens/Team/Teams.test.jsx b/awx/ui_next/src/screens/Team/Teams.test.js similarity index 100% rename from awx/ui_next/src/screens/Team/Teams.test.jsx rename to awx/ui_next/src/screens/Team/Teams.test.js diff --git a/awx/ui_next/src/screens/Team/shared/TeamForm.jsx b/awx/ui_next/src/screens/Team/shared/TeamForm.js similarity index 100% rename from awx/ui_next/src/screens/Team/shared/TeamForm.jsx rename to awx/ui_next/src/screens/Team/shared/TeamForm.js diff --git a/awx/ui_next/src/screens/Team/shared/TeamForm.test.jsx b/awx/ui_next/src/screens/Team/shared/TeamForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Team/shared/TeamForm.test.jsx rename to awx/ui_next/src/screens/Team/shared/TeamForm.test.js diff --git a/awx/ui_next/src/screens/Template/JobTemplateAdd/JobTemplateAdd.jsx b/awx/ui_next/src/screens/Template/JobTemplateAdd/JobTemplateAdd.js similarity index 100% rename from awx/ui_next/src/screens/Template/JobTemplateAdd/JobTemplateAdd.jsx rename to awx/ui_next/src/screens/Template/JobTemplateAdd/JobTemplateAdd.js diff --git a/awx/ui_next/src/screens/Template/JobTemplateAdd/JobTemplateAdd.test.jsx b/awx/ui_next/src/screens/Template/JobTemplateAdd/JobTemplateAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/JobTemplateAdd/JobTemplateAdd.test.jsx rename to awx/ui_next/src/screens/Template/JobTemplateAdd/JobTemplateAdd.test.js diff --git a/awx/ui_next/src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx b/awx/ui_next/src/screens/Template/JobTemplateDetail/JobTemplateDetail.js similarity index 100% rename from awx/ui_next/src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx rename to awx/ui_next/src/screens/Template/JobTemplateDetail/JobTemplateDetail.js diff --git a/awx/ui_next/src/screens/Template/JobTemplateDetail/JobTemplateDetail.test.jsx b/awx/ui_next/src/screens/Template/JobTemplateDetail/JobTemplateDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/JobTemplateDetail/JobTemplateDetail.test.jsx rename to awx/ui_next/src/screens/Template/JobTemplateDetail/JobTemplateDetail.test.js diff --git a/awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.jsx b/awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.js similarity index 100% rename from awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.jsx rename to awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.js diff --git a/awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.test.jsx b/awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.test.jsx rename to awx/ui_next/src/screens/Template/JobTemplateEdit/JobTemplateEdit.test.js diff --git a/awx/ui_next/src/screens/Template/Survey/MultipleChoiceField.jsx b/awx/ui_next/src/screens/Template/Survey/MultipleChoiceField.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/MultipleChoiceField.jsx rename to awx/ui_next/src/screens/Template/Survey/MultipleChoiceField.js diff --git a/awx/ui_next/src/screens/Template/Survey/MultipleChoiceField.test.jsx b/awx/ui_next/src/screens/Template/Survey/MultipleChoiceField.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/MultipleChoiceField.test.jsx rename to awx/ui_next/src/screens/Template/Survey/MultipleChoiceField.test.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyList.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyList.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyList.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyList.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyList.test.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyList.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyList.test.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyList.test.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyListItem.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyListItem.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyListItem.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyListItem.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyListItem.test.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyListItem.test.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyListItem.test.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyPreviewModal.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyPreviewModal.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyPreviewModal.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyPreviewModal.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyPreviewModal.test.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyPreviewModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyPreviewModal.test.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyPreviewModal.test.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyQuestionAdd.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyQuestionAdd.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyQuestionAdd.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyQuestionAdd.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyQuestionAdd.test.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyQuestionAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyQuestionAdd.test.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyQuestionAdd.test.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyQuestionEdit.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyQuestionEdit.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyQuestionEdit.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyQuestionEdit.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyQuestionEdit.test.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyQuestionEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyQuestionEdit.test.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyQuestionEdit.test.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyQuestionForm.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyQuestionForm.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyQuestionForm.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyQuestionForm.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyQuestionForm.test.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyQuestionForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyQuestionForm.test.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyQuestionForm.test.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyToolbar.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyToolbar.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyToolbar.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyToolbar.js diff --git a/awx/ui_next/src/screens/Template/Survey/SurveyToolbar.test.jsx b/awx/ui_next/src/screens/Template/Survey/SurveyToolbar.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/Survey/SurveyToolbar.test.jsx rename to awx/ui_next/src/screens/Template/Survey/SurveyToolbar.test.js diff --git a/awx/ui_next/src/screens/Template/Template.jsx b/awx/ui_next/src/screens/Template/Template.js similarity index 100% rename from awx/ui_next/src/screens/Template/Template.jsx rename to awx/ui_next/src/screens/Template/Template.js diff --git a/awx/ui_next/src/screens/Template/Template.test.jsx b/awx/ui_next/src/screens/Template/Template.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/Template.test.jsx rename to awx/ui_next/src/screens/Template/Template.test.js diff --git a/awx/ui_next/src/screens/Template/TemplateSurvey.jsx b/awx/ui_next/src/screens/Template/TemplateSurvey.js similarity index 100% rename from awx/ui_next/src/screens/Template/TemplateSurvey.jsx rename to awx/ui_next/src/screens/Template/TemplateSurvey.js diff --git a/awx/ui_next/src/screens/Template/TemplateSurvey.test.jsx b/awx/ui_next/src/screens/Template/TemplateSurvey.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/TemplateSurvey.test.jsx rename to awx/ui_next/src/screens/Template/TemplateSurvey.test.js diff --git a/awx/ui_next/src/screens/Template/Templates.jsx b/awx/ui_next/src/screens/Template/Templates.js similarity index 100% rename from awx/ui_next/src/screens/Template/Templates.jsx rename to awx/ui_next/src/screens/Template/Templates.js diff --git a/awx/ui_next/src/screens/Template/Templates.test.jsx b/awx/ui_next/src/screens/Template/Templates.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/Templates.test.jsx rename to awx/ui_next/src/screens/Template/Templates.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplate.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplate.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplate.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplate.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplate.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplate.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplate.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplate.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateAdd/WorkflowJobTemplateAdd.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateAdd/WorkflowJobTemplateAdd.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateAdd/WorkflowJobTemplateAdd.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateAdd/WorkflowJobTemplateAdd.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateAdd/WorkflowJobTemplateAdd.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateAdd/WorkflowJobTemplateAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateAdd/WorkflowJobTemplateAdd.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateAdd/WorkflowJobTemplateAdd.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateEdit/WorkflowJobTemplateEdit.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeNextButton.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeNextButton.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeNextButton.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeNextButton.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeNextButton.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeNextButton.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeNextButton.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeNextButton.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.test.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.js diff --git a/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.test.jsx b/awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.test.jsx rename to awx/ui_next/src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.test.js diff --git a/awx/ui_next/src/screens/Template/shared/JobTemplateForm.jsx b/awx/ui_next/src/screens/Template/shared/JobTemplateForm.js similarity index 100% rename from awx/ui_next/src/screens/Template/shared/JobTemplateForm.jsx rename to awx/ui_next/src/screens/Template/shared/JobTemplateForm.js diff --git a/awx/ui_next/src/screens/Template/shared/JobTemplateForm.test.jsx b/awx/ui_next/src/screens/Template/shared/JobTemplateForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/shared/JobTemplateForm.test.jsx rename to awx/ui_next/src/screens/Template/shared/JobTemplateForm.test.js diff --git a/awx/ui_next/src/screens/Template/shared/LabelSelect.jsx b/awx/ui_next/src/screens/Template/shared/LabelSelect.js similarity index 100% rename from awx/ui_next/src/screens/Template/shared/LabelSelect.jsx rename to awx/ui_next/src/screens/Template/shared/LabelSelect.js diff --git a/awx/ui_next/src/screens/Template/shared/LabelSelect.test.jsx b/awx/ui_next/src/screens/Template/shared/LabelSelect.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/shared/LabelSelect.test.jsx rename to awx/ui_next/src/screens/Template/shared/LabelSelect.test.js diff --git a/awx/ui_next/src/screens/Template/shared/PlaybookSelect.jsx b/awx/ui_next/src/screens/Template/shared/PlaybookSelect.js similarity index 100% rename from awx/ui_next/src/screens/Template/shared/PlaybookSelect.jsx rename to awx/ui_next/src/screens/Template/shared/PlaybookSelect.js diff --git a/awx/ui_next/src/screens/Template/shared/PlaybookSelect.test.jsx b/awx/ui_next/src/screens/Template/shared/PlaybookSelect.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/shared/PlaybookSelect.test.jsx rename to awx/ui_next/src/screens/Template/shared/PlaybookSelect.test.js diff --git a/awx/ui_next/src/screens/Template/shared/WebhookSubForm.jsx b/awx/ui_next/src/screens/Template/shared/WebhookSubForm.js similarity index 100% rename from awx/ui_next/src/screens/Template/shared/WebhookSubForm.jsx rename to awx/ui_next/src/screens/Template/shared/WebhookSubForm.js diff --git a/awx/ui_next/src/screens/Template/shared/WebhookSubForm.test.jsx b/awx/ui_next/src/screens/Template/shared/WebhookSubForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/shared/WebhookSubForm.test.jsx rename to awx/ui_next/src/screens/Template/shared/WebhookSubForm.test.js diff --git a/awx/ui_next/src/screens/Template/shared/WorkflowJobTemplateForm.jsx b/awx/ui_next/src/screens/Template/shared/WorkflowJobTemplateForm.js similarity index 100% rename from awx/ui_next/src/screens/Template/shared/WorkflowJobTemplateForm.jsx rename to awx/ui_next/src/screens/Template/shared/WorkflowJobTemplateForm.js diff --git a/awx/ui_next/src/screens/Template/shared/WorkflowJobTemplateForm.test.jsx b/awx/ui_next/src/screens/Template/shared/WorkflowJobTemplateForm.test.js similarity index 100% rename from awx/ui_next/src/screens/Template/shared/WorkflowJobTemplateForm.test.jsx rename to awx/ui_next/src/screens/Template/shared/WorkflowJobTemplateForm.test.js diff --git a/awx/ui_next/src/screens/User/User.jsx b/awx/ui_next/src/screens/User/User.js similarity index 100% rename from awx/ui_next/src/screens/User/User.jsx rename to awx/ui_next/src/screens/User/User.js diff --git a/awx/ui_next/src/screens/User/User.test.jsx b/awx/ui_next/src/screens/User/User.test.js similarity index 100% rename from awx/ui_next/src/screens/User/User.test.jsx rename to awx/ui_next/src/screens/User/User.test.js diff --git a/awx/ui_next/src/screens/User/UserAdd/UserAdd.jsx b/awx/ui_next/src/screens/User/UserAdd/UserAdd.js similarity index 100% rename from awx/ui_next/src/screens/User/UserAdd/UserAdd.jsx rename to awx/ui_next/src/screens/User/UserAdd/UserAdd.js diff --git a/awx/ui_next/src/screens/User/UserAdd/UserAdd.test.jsx b/awx/ui_next/src/screens/User/UserAdd/UserAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserAdd/UserAdd.test.jsx rename to awx/ui_next/src/screens/User/UserAdd/UserAdd.test.js diff --git a/awx/ui_next/src/screens/User/UserDetail/UserDetail.jsx b/awx/ui_next/src/screens/User/UserDetail/UserDetail.js similarity index 100% rename from awx/ui_next/src/screens/User/UserDetail/UserDetail.jsx rename to awx/ui_next/src/screens/User/UserDetail/UserDetail.js diff --git a/awx/ui_next/src/screens/User/UserDetail/UserDetail.test.jsx b/awx/ui_next/src/screens/User/UserDetail/UserDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserDetail/UserDetail.test.jsx rename to awx/ui_next/src/screens/User/UserDetail/UserDetail.test.js diff --git a/awx/ui_next/src/screens/User/UserEdit/UserEdit.jsx b/awx/ui_next/src/screens/User/UserEdit/UserEdit.js similarity index 100% rename from awx/ui_next/src/screens/User/UserEdit/UserEdit.jsx rename to awx/ui_next/src/screens/User/UserEdit/UserEdit.js diff --git a/awx/ui_next/src/screens/User/UserEdit/UserEdit.test.jsx b/awx/ui_next/src/screens/User/UserEdit/UserEdit.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserEdit/UserEdit.test.jsx rename to awx/ui_next/src/screens/User/UserEdit/UserEdit.test.js diff --git a/awx/ui_next/src/screens/User/UserList/UserList.jsx b/awx/ui_next/src/screens/User/UserList/UserList.js similarity index 100% rename from awx/ui_next/src/screens/User/UserList/UserList.jsx rename to awx/ui_next/src/screens/User/UserList/UserList.js diff --git a/awx/ui_next/src/screens/User/UserList/UserList.test.jsx b/awx/ui_next/src/screens/User/UserList/UserList.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserList/UserList.test.jsx rename to awx/ui_next/src/screens/User/UserList/UserList.test.js diff --git a/awx/ui_next/src/screens/User/UserList/UserListItem.jsx b/awx/ui_next/src/screens/User/UserList/UserListItem.js similarity index 100% rename from awx/ui_next/src/screens/User/UserList/UserListItem.jsx rename to awx/ui_next/src/screens/User/UserList/UserListItem.js diff --git a/awx/ui_next/src/screens/User/UserList/UserListItem.test.jsx b/awx/ui_next/src/screens/User/UserList/UserListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserList/UserListItem.test.jsx rename to awx/ui_next/src/screens/User/UserList/UserListItem.test.js diff --git a/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationList.jsx b/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationList.js similarity index 100% rename from awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationList.jsx rename to awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationList.js diff --git a/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationList.test.jsx b/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationList.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationList.test.jsx rename to awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationList.test.js diff --git a/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationListItem.jsx b/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationListItem.js similarity index 100% rename from awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationListItem.jsx rename to awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationListItem.js diff --git a/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationListItem.test.jsx b/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationListItem.test.jsx rename to awx/ui_next/src/screens/User/UserOrganizations/UserOrganizationListItem.test.js diff --git a/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizations.jsx b/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizations.js similarity index 100% rename from awx/ui_next/src/screens/User/UserOrganizations/UserOrganizations.jsx rename to awx/ui_next/src/screens/User/UserOrganizations/UserOrganizations.js diff --git a/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizations.test.jsx b/awx/ui_next/src/screens/User/UserOrganizations/UserOrganizations.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserOrganizations/UserOrganizations.test.jsx rename to awx/ui_next/src/screens/User/UserOrganizations/UserOrganizations.test.js diff --git a/awx/ui_next/src/screens/User/UserRoles/UserRolesList.jsx b/awx/ui_next/src/screens/User/UserRoles/UserRolesList.js similarity index 100% rename from awx/ui_next/src/screens/User/UserRoles/UserRolesList.jsx rename to awx/ui_next/src/screens/User/UserRoles/UserRolesList.js diff --git a/awx/ui_next/src/screens/User/UserRoles/UserRolesList.test.jsx b/awx/ui_next/src/screens/User/UserRoles/UserRolesList.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserRoles/UserRolesList.test.jsx rename to awx/ui_next/src/screens/User/UserRoles/UserRolesList.test.js diff --git a/awx/ui_next/src/screens/User/UserRoles/UserRolesListItem.jsx b/awx/ui_next/src/screens/User/UserRoles/UserRolesListItem.js similarity index 100% rename from awx/ui_next/src/screens/User/UserRoles/UserRolesListItem.jsx rename to awx/ui_next/src/screens/User/UserRoles/UserRolesListItem.js diff --git a/awx/ui_next/src/screens/User/UserRoles/UserRolesListItem.test.jsx b/awx/ui_next/src/screens/User/UserRoles/UserRolesListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserRoles/UserRolesListItem.test.jsx rename to awx/ui_next/src/screens/User/UserRoles/UserRolesListItem.test.js diff --git a/awx/ui_next/src/screens/User/UserTeams/UserTeamList.jsx b/awx/ui_next/src/screens/User/UserTeams/UserTeamList.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTeams/UserTeamList.jsx rename to awx/ui_next/src/screens/User/UserTeams/UserTeamList.js diff --git a/awx/ui_next/src/screens/User/UserTeams/UserTeamList.test.jsx b/awx/ui_next/src/screens/User/UserTeams/UserTeamList.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTeams/UserTeamList.test.jsx rename to awx/ui_next/src/screens/User/UserTeams/UserTeamList.test.js diff --git a/awx/ui_next/src/screens/User/UserTeams/UserTeamListItem.jsx b/awx/ui_next/src/screens/User/UserTeams/UserTeamListItem.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTeams/UserTeamListItem.jsx rename to awx/ui_next/src/screens/User/UserTeams/UserTeamListItem.js diff --git a/awx/ui_next/src/screens/User/UserTeams/UserTeamListItem.test.jsx b/awx/ui_next/src/screens/User/UserTeams/UserTeamListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTeams/UserTeamListItem.test.jsx rename to awx/ui_next/src/screens/User/UserTeams/UserTeamListItem.test.js diff --git a/awx/ui_next/src/screens/User/UserTeams/UserTeams.jsx b/awx/ui_next/src/screens/User/UserTeams/UserTeams.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTeams/UserTeams.jsx rename to awx/ui_next/src/screens/User/UserTeams/UserTeams.js diff --git a/awx/ui_next/src/screens/User/UserToken/UserToken.jsx b/awx/ui_next/src/screens/User/UserToken/UserToken.js similarity index 100% rename from awx/ui_next/src/screens/User/UserToken/UserToken.jsx rename to awx/ui_next/src/screens/User/UserToken/UserToken.js diff --git a/awx/ui_next/src/screens/User/UserToken/UserToken.test.jsx b/awx/ui_next/src/screens/User/UserToken/UserToken.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserToken/UserToken.test.jsx rename to awx/ui_next/src/screens/User/UserToken/UserToken.test.js diff --git a/awx/ui_next/src/screens/User/UserTokenAdd/UserTokenAdd.jsx b/awx/ui_next/src/screens/User/UserTokenAdd/UserTokenAdd.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTokenAdd/UserTokenAdd.jsx rename to awx/ui_next/src/screens/User/UserTokenAdd/UserTokenAdd.js diff --git a/awx/ui_next/src/screens/User/UserTokenAdd/UserTokenAdd.test.jsx b/awx/ui_next/src/screens/User/UserTokenAdd/UserTokenAdd.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTokenAdd/UserTokenAdd.test.jsx rename to awx/ui_next/src/screens/User/UserTokenAdd/UserTokenAdd.test.js diff --git a/awx/ui_next/src/screens/User/UserTokenDetail/UserTokenDetail.jsx b/awx/ui_next/src/screens/User/UserTokenDetail/UserTokenDetail.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTokenDetail/UserTokenDetail.jsx rename to awx/ui_next/src/screens/User/UserTokenDetail/UserTokenDetail.js diff --git a/awx/ui_next/src/screens/User/UserTokenDetail/UserTokenDetail.test.jsx b/awx/ui_next/src/screens/User/UserTokenDetail/UserTokenDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTokenDetail/UserTokenDetail.test.jsx rename to awx/ui_next/src/screens/User/UserTokenDetail/UserTokenDetail.test.js diff --git a/awx/ui_next/src/screens/User/UserTokenList/UserTokenList.jsx b/awx/ui_next/src/screens/User/UserTokenList/UserTokenList.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTokenList/UserTokenList.jsx rename to awx/ui_next/src/screens/User/UserTokenList/UserTokenList.js diff --git a/awx/ui_next/src/screens/User/UserTokenList/UserTokenList.test.jsx b/awx/ui_next/src/screens/User/UserTokenList/UserTokenList.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTokenList/UserTokenList.test.jsx rename to awx/ui_next/src/screens/User/UserTokenList/UserTokenList.test.js diff --git a/awx/ui_next/src/screens/User/UserTokenList/UserTokenListItem.jsx b/awx/ui_next/src/screens/User/UserTokenList/UserTokenListItem.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTokenList/UserTokenListItem.jsx rename to awx/ui_next/src/screens/User/UserTokenList/UserTokenListItem.js diff --git a/awx/ui_next/src/screens/User/UserTokenList/UserTokenListItem.test.jsx b/awx/ui_next/src/screens/User/UserTokenList/UserTokenListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTokenList/UserTokenListItem.test.jsx rename to awx/ui_next/src/screens/User/UserTokenList/UserTokenListItem.test.js diff --git a/awx/ui_next/src/screens/User/UserTokens/UserTokens.jsx b/awx/ui_next/src/screens/User/UserTokens/UserTokens.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTokens/UserTokens.jsx rename to awx/ui_next/src/screens/User/UserTokens/UserTokens.js diff --git a/awx/ui_next/src/screens/User/UserTokens/UserTokens.test.jsx b/awx/ui_next/src/screens/User/UserTokens/UserTokens.test.js similarity index 100% rename from awx/ui_next/src/screens/User/UserTokens/UserTokens.test.jsx rename to awx/ui_next/src/screens/User/UserTokens/UserTokens.test.js diff --git a/awx/ui_next/src/screens/User/Users.jsx b/awx/ui_next/src/screens/User/Users.js similarity index 100% rename from awx/ui_next/src/screens/User/Users.jsx rename to awx/ui_next/src/screens/User/Users.js diff --git a/awx/ui_next/src/screens/User/Users.test.jsx b/awx/ui_next/src/screens/User/Users.test.js similarity index 100% rename from awx/ui_next/src/screens/User/Users.test.jsx rename to awx/ui_next/src/screens/User/Users.test.js diff --git a/awx/ui_next/src/screens/User/shared/UserForm.jsx b/awx/ui_next/src/screens/User/shared/UserForm.js similarity index 100% rename from awx/ui_next/src/screens/User/shared/UserForm.jsx rename to awx/ui_next/src/screens/User/shared/UserForm.js diff --git a/awx/ui_next/src/screens/User/shared/UserForm.test.jsx b/awx/ui_next/src/screens/User/shared/UserForm.test.js similarity index 100% rename from awx/ui_next/src/screens/User/shared/UserForm.test.jsx rename to awx/ui_next/src/screens/User/shared/UserForm.test.js diff --git a/awx/ui_next/src/screens/User/shared/UserTokenForm.jsx b/awx/ui_next/src/screens/User/shared/UserTokenForm.js similarity index 100% rename from awx/ui_next/src/screens/User/shared/UserTokenForm.jsx rename to awx/ui_next/src/screens/User/shared/UserTokenForm.js diff --git a/awx/ui_next/src/screens/User/shared/UserTokenForm.test.jsx b/awx/ui_next/src/screens/User/shared/UserTokenForm.test.js similarity index 100% rename from awx/ui_next/src/screens/User/shared/UserTokenForm.test.jsx rename to awx/ui_next/src/screens/User/shared/UserTokenForm.test.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApproval.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApproval.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApproval.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApproval.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApproval.test.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApproval.test.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApproval.test.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApproval.test.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.test.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.test.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.test.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.test.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.test.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.test.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.test.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.test.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.test.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.test.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.test.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.test.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.test.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.test.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.test.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.test.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.test.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.test.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.test.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.test.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/useWsWorkflowApprovals.test.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/useWsWorkflowApprovals.test.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/useWsWorkflowApprovals.test.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovalList/useWsWorkflowApprovals.test.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovals.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovals.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovals.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovals.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovals.test.jsx b/awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovals.test.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovals.test.jsx rename to awx/ui_next/src/screens/WorkflowApproval/WorkflowApprovals.test.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx b/awx/ui_next/src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx rename to awx/ui_next/src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.js diff --git a/awx/ui_next/src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.test.jsx b/awx/ui_next/src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.test.js similarity index 100% rename from awx/ui_next/src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.test.jsx rename to awx/ui_next/src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.test.js diff --git a/awx/ui_next/src/util/dates.jsx b/awx/ui_next/src/util/dates.js similarity index 100% rename from awx/ui_next/src/util/dates.jsx rename to awx/ui_next/src/util/dates.js diff --git a/awx/ui_next/src/util/dates.test.jsx b/awx/ui_next/src/util/dates.test.js similarity index 100% rename from awx/ui_next/src/util/dates.test.jsx rename to awx/ui_next/src/util/dates.test.js diff --git a/awx/ui_next/src/util/language.test.jsx b/awx/ui_next/src/util/language.test.js similarity index 100% rename from awx/ui_next/src/util/language.test.jsx rename to awx/ui_next/src/util/language.test.js diff --git a/awx/ui_next/src/util/omitProps.jsx b/awx/ui_next/src/util/omitProps.js similarity index 100% rename from awx/ui_next/src/util/omitProps.jsx rename to awx/ui_next/src/util/omitProps.js diff --git a/awx/ui_next/src/util/omitProps.test.jsx b/awx/ui_next/src/util/omitProps.test.js similarity index 100% rename from awx/ui_next/src/util/omitProps.test.jsx rename to awx/ui_next/src/util/omitProps.test.js diff --git a/awx/ui_next/src/util/useAutoPopulateLookup.jsx b/awx/ui_next/src/util/useAutoPopulateLookup.js similarity index 100% rename from awx/ui_next/src/util/useAutoPopulateLookup.jsx rename to awx/ui_next/src/util/useAutoPopulateLookup.js diff --git a/awx/ui_next/src/util/useDebounce.jsx b/awx/ui_next/src/util/useDebounce.js similarity index 100% rename from awx/ui_next/src/util/useDebounce.jsx rename to awx/ui_next/src/util/useDebounce.js diff --git a/awx/ui_next/src/util/useDebounce.test.jsx b/awx/ui_next/src/util/useDebounce.test.js similarity index 100% rename from awx/ui_next/src/util/useDebounce.test.jsx rename to awx/ui_next/src/util/useDebounce.test.js diff --git a/awx/ui_next/src/util/useExpanded.jsx b/awx/ui_next/src/util/useExpanded.js similarity index 100% rename from awx/ui_next/src/util/useExpanded.jsx rename to awx/ui_next/src/util/useExpanded.js diff --git a/awx/ui_next/src/util/useExpanded.test.jsx b/awx/ui_next/src/util/useExpanded.test.js similarity index 100% rename from awx/ui_next/src/util/useExpanded.test.jsx rename to awx/ui_next/src/util/useExpanded.test.js diff --git a/awx/ui_next/src/util/useModal.test.jsx b/awx/ui_next/src/util/useModal.test.js similarity index 100% rename from awx/ui_next/src/util/useModal.test.jsx rename to awx/ui_next/src/util/useModal.test.js diff --git a/awx/ui_next/src/util/useRequest.test.jsx b/awx/ui_next/src/util/useRequest.test.js similarity index 100% rename from awx/ui_next/src/util/useRequest.test.jsx rename to awx/ui_next/src/util/useRequest.test.js diff --git a/awx/ui_next/src/util/useSelected.jsx b/awx/ui_next/src/util/useSelected.js similarity index 100% rename from awx/ui_next/src/util/useSelected.jsx rename to awx/ui_next/src/util/useSelected.js diff --git a/awx/ui_next/src/util/useSelected.test.jsx b/awx/ui_next/src/util/useSelected.test.js similarity index 100% rename from awx/ui_next/src/util/useSelected.test.jsx rename to awx/ui_next/src/util/useSelected.test.js diff --git a/awx/ui_next/src/util/useWsTemplates.jsx b/awx/ui_next/src/util/useWsTemplates.js similarity index 100% rename from awx/ui_next/src/util/useWsTemplates.jsx rename to awx/ui_next/src/util/useWsTemplates.js diff --git a/awx/ui_next/src/util/useWsTemplates.test.jsx b/awx/ui_next/src/util/useWsTemplates.test.js similarity index 100% rename from awx/ui_next/src/util/useWsTemplates.test.jsx rename to awx/ui_next/src/util/useWsTemplates.test.js diff --git a/awx/ui_next/src/util/validators.jsx b/awx/ui_next/src/util/validators.js similarity index 100% rename from awx/ui_next/src/util/validators.jsx rename to awx/ui_next/src/util/validators.js diff --git a/tools/fixrelative.py b/tools/fixrelative.py index 24dfd25fdd..fc9bc5244e 100644 --- a/tools/fixrelative.py +++ b/tools/fixrelative.py @@ -98,8 +98,8 @@ def run(): search_path = args.root_dir + "**/**/*.js*" for file_path in glob.iglob(search_path, recursive=True): - find_and_replace_roots(file_path, args.root_dir, args.preview) - #rename_jsx(file_path, args.preview) + #find_and_replace_roots(file_path, args.root_dir, args.preview) + rename_jsx(file_path, args.preview) if __name__ == "__main__":