{children}; -}; + return ( +
+ {children} ++ ) +} -BlockQuote.displayName = COMPONENT_NAME; +BlockQuote.displayName = COMPONENT_NAME -export default BlockQuote; +export default BlockQuote diff --git a/src/components/ui/BlockQuote/BlockQuote_sb.stories.js b/src/components/ui/BlockQuote/BlockQuote_sb.stories.js deleted file mode 100644 index d3618926..00000000 --- a/src/components/ui/BlockQuote/BlockQuote_sb.stories.js +++ /dev/null @@ -1,34 +0,0 @@ -import BlockQuote from './BlockQuote'; -import SandboxEditor from '~/components/tools/SandboxEditor/SandboxEditor'; - -const BLOCKQUOTE_TEXT = `Avian carriers can provide high delay, low throughput, and low altitude - service. The connection topology is limited to a single point-to-point path - for each carrier, used with standard carriers, but many carriers can be used - without significant interference with each other, outside early spring. This - is because of the 3D ether space available to the carriers, in contrast to - the 1D ether used by IEEE802.3. The carriers have an intrinsic collision - avoidance system, which increases availability.`; - -// More on how to set up stories at: https://storybook.js.org/docs/react/writing-stories/introduction#default-export -export default { - title: 'UI/Data-Display/BlockQuote', - component: BlockQuote, - render: (args) =>
-- -{BLOCKQUOTE_TEXT}-
Button Variants
-John Doe
-- 1 hour ago -
-
- requestAnimationFrame()
-
-
-
- {Code_TEXT}
-
-
-
- {children}
-
;
-};
+const Code = ({ children }: CodeProps) => {
+ return {children}
+}
-export default Code;
+export default Code
diff --git a/src/components/ui/Dropdown/Dropdown.stories.js b/src/components/ui/Dropdown/Dropdown.stories.js
deleted file mode 100644
index 48b207ed..00000000
--- a/src/components/ui/Dropdown/Dropdown.stories.js
+++ /dev/null
@@ -1,43 +0,0 @@
-
-import Heading from '~/components/ui/Heading/Heading';
-import Dropdown from '~/components/ui/Dropdown/Dropdown';
-import SandboxEditor from '~/components/tools/SandboxEditor/SandboxEditor';
-
-// More on how to set up stories at: https://storybook.js.org/docs/react/writing-stories/introduction#default-export
-export default {
- title: 'UI/Input/Dropdown',
- component: Dropdown,
- render: (args) =>