this.setState( { isModalOpen: false } ) }
+ className="woocommerce-navigation-opt-out-modal"
+ >
+
+ { __(
+ "Take this 2-minute survey to share why you're opting out of the new navigation",
+ 'woocommerce-admin'
+ ) }
+
+
+
+
+
+
+
+
+ );
+ }
+}
diff --git a/plugins/woocommerce-admin/client/wp-admin-scripts/navigation-opt-out/index.js b/plugins/woocommerce-admin/client/wp-admin-scripts/navigation-opt-out/index.js
new file mode 100644
index 00000000000..9f52860e34a
--- /dev/null
+++ b/plugins/woocommerce-admin/client/wp-admin-scripts/navigation-opt-out/index.js
@@ -0,0 +1,18 @@
+/**
+ * External dependencies
+ */
+import { render } from '@wordpress/element';
+
+/**
+ * Internal dependencies
+ */
+import { NavigationOptOutContainer } from './container';
+import './style.scss';
+
+const navigationOptOutRoot = document.createElement( 'div' );
+navigationOptOutRoot.setAttribute( 'id', 'navigation-opt-out-root' );
+
+render(
+