summaryrefslogtreecommitdiffstats
path: root/browser/components/asrouter/content-src/components/ConditionalWrapper/ConditionalWrapper.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/asrouter/content-src/components/ConditionalWrapper/ConditionalWrapper.jsx')
-rw-r--r--browser/components/asrouter/content-src/components/ConditionalWrapper/ConditionalWrapper.jsx9
1 files changed, 0 insertions, 9 deletions
diff --git a/browser/components/asrouter/content-src/components/ConditionalWrapper/ConditionalWrapper.jsx b/browser/components/asrouter/content-src/components/ConditionalWrapper/ConditionalWrapper.jsx
deleted file mode 100644
index e4b0812f26..0000000000
--- a/browser/components/asrouter/content-src/components/ConditionalWrapper/ConditionalWrapper.jsx
+++ /dev/null
@@ -1,9 +0,0 @@
-/* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this file,
- * You can obtain one at http://mozilla.org/MPL/2.0/. */
-
-// lifted from https://gist.github.com/kitze/23d82bb9eb0baabfd03a6a720b1d637f
-const ConditionalWrapper = ({ condition, wrap, children }) =>
- condition && wrap ? wrap(children) : children;
-
-export default ConditionalWrapper;