Skip to content

Commit

Permalink
chore: add/fix missing/incorrect imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Dendorfer authored and fdendorfer committed Oct 29, 2024
1 parent 0118792 commit 88d6d84
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
4 changes: 2 additions & 2 deletions app/components/stories/components/MetaInfo.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Meta, Story, Canvas, ArgsTable } from '@storybook/addon-docs/blocks'
import MetaInfoStories from './MetaInfo.stories'
import { Meta, Canvas } from '@storybook/blocks'
import * as MetaInfoStories from './MetaInfo.stories'

<Meta of={MetaInfoStories} />

Expand Down
2 changes: 1 addition & 1 deletion app/components/stories/getStarted.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ https://github.com/swiss/designsystem/tree/main/css/foundations/fonts

### Figma Design System

https://www.figma.com/file/bdlp9d8uGurymqdeO535CX/%F0%9F%87%A8%F0%9F%87%ADDesign-System-Core-Library?type=design\&node-id=1-2\&mode=design
https://www.figma.com/file/bdlp9d8uGurymqdeO535CX/%F0%9F%87%A8%F0%9F%87%ADDesign-System-Core-Library?type=design&node-id=1-2&mode=design
4 changes: 2 additions & 2 deletions app/components/stories/pages/IndexPage.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Meta, Story, Canvas, ArgsTable } from '@storybook/addon-docs'
import IndexPageStories from './IndexPage.stories'
import { Meta, Canvas } from '@storybook/blocks'
import * as IndexPageStories from './IndexPage.stories'

<Meta of={IndexPageStories} />

Expand Down
15 changes: 9 additions & 6 deletions app/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -107,19 +107,22 @@

<script setup lang="ts">
import AlterBodyClasses from '../components/ch/objects/AlterBodyClasses.vue'
import NotificationBanner from '../components/ch/components/NotificationBanner.vue'
import BackToTopBtn from '../components/ch/components/BackToTopBtn.vue'
import Breadcrumb from '../components/ch/sections/Breadcrumb.vue'
import Btn from '../components/ch/components/Btn.vue'
import DesktopMenu from '../components/ch/sections/DesktopMenu.vue'
import FooterInformation from '../components/ch/sections/FooterInformation.vue'
import FooterNavigation from '../components/ch/sections/FooterNavigation.vue'
import TopNewsSection from '../components/ch/sections/TopNewsSection.vue'
import Hero from '../components/ch/sections/Hero.vue'
import MediasSection from '../components/ch/sections/MediasSection.vue'
import MobileMenu from '../components/ch/sections/MobileMenu.vue'
import NotificationBanner from '../components/ch/components/NotificationBanner.vue'
import ServicesSection from '../components/ch/sections/ServicesSection.vue'
import SocialsSection from '../components/ch/sections/SocialsSection.vue'
import MediasSection from '../components/ch/sections/MediasSection.vue'
import TopBar from '../components/ch/sections/TopBar.vue'
import TopHeader from '../components/ch/sections/TopHeader.vue'
import TopicsSection from '../components/ch/sections/TopicsSection.vue'
import Hero from '../components/ch/sections/Hero.vue'
import BackToTopBtn from '../components/ch/components/BackToTopBtn.vue'
import Btn from '../components/ch/components/Btn.vue'
import TopNewsSection from '../components/ch/sections/TopNewsSection.vue'
import { reactive } from 'vue'
import { useLayoutStore } from '../store/layout'
import type { SocialsFeed } from '../types'
Expand Down

0 comments on commit 88d6d84

Please sign in to comment.