diff --git a/app/jsx/outcomes/OutcomeManagement.js b/app/jsx/outcomes/OutcomeManagement.js
index 86efc1bc2e8..8659e1477d1 100644
--- a/app/jsx/outcomes/OutcomeManagement.js
+++ b/app/jsx/outcomes/OutcomeManagement.js
@@ -22,6 +22,7 @@ import MasteryScale from 'jsx/outcomes/MasteryScale'
import MasteryCalculation from 'jsx/outcomes/MasteryCalculation'
import {ApolloProvider, createClient} from 'jsx/canvas-apollo'
import ManagementHeader from './ManagementHeader'
+import OutcomeManagementPanel from './OutcomeManagementPanel'
export const OutcomePanel = () => {
useEffect(() => {
@@ -61,7 +62,11 @@ const OutcomeManagement = () => {
{improvedManagement && }
-
+ {improvedManagement ? (
+
+ ) : (
+
+ )}
diff --git a/app/jsx/outcomes/OutcomeManagementPanel.js b/app/jsx/outcomes/OutcomeManagementPanel.js
new file mode 100644
index 00000000000..90033b61d0c
--- /dev/null
+++ b/app/jsx/outcomes/OutcomeManagementPanel.js
@@ -0,0 +1,55 @@
+/*
+ * Copyright (C) 2020 - present Instructure, Inc.
+ *
+ * This file is part of Canvas.
+ *
+ * Canvas is free software: you can redistribute it and/or modify it under
+ * the terms of the GNU Affero General Public License as published by the Free
+ * Software Foundation, version 3 of the License.
+ *
+ * Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+ * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU Affero General Public License along
+ * with this program. If not, see .
+ */
+import {Billboard} from '@instructure/ui-billboard'
+import SVGWrapper from '../shared/SVGWrapper'
+import {PresentationContent} from '@instructure/ui-a11y'
+import I18n from 'i18n!OutcomeManagement'
+import React from 'react'
+
+const OutcomeManagementPanel = ({contextType, contextId}) => {
+ const isCourse = contextType === 'Course'
+ return (
+
+
+ {isCourse
+ ? I18n.t('Outcomes have not been added to this course yet.')
+ : I18n.t('Outcomes have not been added to this account yet.')}
+
+
+ {isCourse
+ ? I18n.t('Get started by finding, importing or creating your course outcomes.')
+ : I18n.t('Get started by finding, importing or creating your account outcomes.')}
+