@@ -57,7 +57,7 @@ exports[`ListElement > renders correctly 1`] = `
diff --git a/frontend/src/components/vuetify/Molecules/__snapshots__/SearchField.test.ts.snap b/frontend/src/components/tablesDrawer/__snapshots__/SearchField.test.ts.snap
similarity index 100%
rename from frontend/src/components/vuetify/Molecules/__snapshots__/SearchField.test.ts.snap
rename to frontend/src/components/tablesDrawer/__snapshots__/SearchField.test.ts.snap
diff --git a/frontend/src/components/tablesDrawer/__snapshots__/TableList.test.ts.snap b/frontend/src/components/tablesDrawer/__snapshots__/TableList.test.ts.snap
new file mode 100644
index 0000000000..95e46b24c2
--- /dev/null
+++ b/frontend/src/components/tablesDrawer/__snapshots__/TableList.test.ts.snap
@@ -0,0 +1,167 @@
+// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
+
+exports[`TableList > renders correctly 1`] = `
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ my meeting
+
+
+ $t('rooms.participantCount')
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ my meeting
+
+
+ $t('rooms.participantCount')
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+`;
diff --git a/frontend/src/components/tablesDrawer/__snapshots__/TablesDrawer.test.ts.snap b/frontend/src/components/tablesDrawer/__snapshots__/TablesDrawer.test.ts.snap
new file mode 100644
index 0000000000..1029bb6e87
--- /dev/null
+++ b/frontend/src/components/tablesDrawer/__snapshots__/TablesDrawer.test.ts.snap
@@ -0,0 +1,278 @@
+// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
+
+exports[`TablesDrawer > renders correctly 1`] = `
+
+`;
diff --git a/frontend/src/components/vuetify/Atoms/ListElement.test.ts b/frontend/src/components/vuetify/Atoms/ListElement.test.ts
deleted file mode 100644
index f5254232ce..0000000000
--- a/frontend/src/components/vuetify/Atoms/ListElement.test.ts
+++ /dev/null
@@ -1,30 +0,0 @@
-import { mount } from '@vue/test-utils'
-import { describe, it, expect, beforeEach } from 'vitest'
-import { h } from 'vue'
-import { VApp } from 'vuetify/components'
-
-import ListElement from './ListElement.vue'
-
-describe('ListElement', () => {
- const Wrapper = () => {
- return mount(VApp, {
- slots: {
- default: h(ListElement),
- },
- })
- }
-
- let wrapper: ReturnType
-
- beforeEach(() => {
- wrapper = Wrapper()
- })
-
- it('renders correctly', () => {
- expect(wrapper.element).toMatchSnapshot()
- })
-
- it('renders list', () => {
- expect(wrapper.find('.v-list--density-default').exists()).toBe(true)
- })
-})
diff --git a/frontend/src/components/vuetify/Molecules/SearchField.stories.ts b/frontend/src/components/vuetify/Molecules/SearchField.stories.ts
deleted file mode 100644
index b59cb6b67f..0000000000
--- a/frontend/src/components/vuetify/Molecules/SearchField.stories.ts
+++ /dev/null
@@ -1,24 +0,0 @@
-/* eslint-disable @typescript-eslint/no-unsafe-assignment */
-
-import { Meta, StoryFn } from '@storybook/vue3'
-
-import SearchDrawerField from './SearchField.vue'
-
-export default {
- title: 'Molecules/SearchField',
- component: SearchDrawerField,
-} as Meta
-
-const Template: StoryFn = (args) => ({
- components: { SearchDrawerField },
- setup() {
- return { args }
- },
- template: '',
-})
-
-export const Default = Template.bind({})
-Default.args = {
- label: 'Search',
- prependInnerIcon: 'mdi-tune',
-}
diff --git a/frontend/src/components/vuetify/Molecules/SearchField.test.ts b/frontend/src/components/vuetify/Molecules/SearchField.test.ts
deleted file mode 100644
index 15f051e19d..0000000000
--- a/frontend/src/components/vuetify/Molecules/SearchField.test.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-import { mount } from '@vue/test-utils'
-import { describe, it, expect, beforeEach } from 'vitest'
-import { h } from 'vue'
-import { VApp } from 'vuetify/components'
-
-import SearchField from './SearchField.vue'
-
-describe('SearchField', () => {
- const Wrapper = () => {
- return mount(VApp, {
- slots: {
- default: h(SearchField),
- },
- })
- }
-
- let wrapper: ReturnType
-
- beforeEach(() => {
- wrapper = Wrapper()
- })
-
- it('renders', () => {
- expect(wrapper.element).toMatchSnapshot()
- })
-})
diff --git a/frontend/src/components/vuetify/Molecules/SearchField.vue b/frontend/src/components/vuetify/Molecules/SearchField.vue
deleted file mode 100644
index 5587ce848b..0000000000
--- a/frontend/src/components/vuetify/Molecules/SearchField.vue
+++ /dev/null
@@ -1,68 +0,0 @@
-
-
-
-
-
-
-
diff --git a/frontend/src/components/vuetify/Organisms/ListWithNavigationDrawer.vue b/frontend/src/components/vuetify/Organisms/ListWithNavigationDrawer.vue
deleted file mode 100644
index c7c0740b3b..0000000000
--- a/frontend/src/components/vuetify/Organisms/ListWithNavigationDrawer.vue
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
diff --git a/frontend/src/layouts/__snapshots__/DefaultLayout.test.ts.snap b/frontend/src/layouts/__snapshots__/DefaultLayout.test.ts.snap
index 8b014f04cd..9c519632ec 100644
--- a/frontend/src/layouts/__snapshots__/DefaultLayout.test.ts.snap
+++ b/frontend/src/layouts/__snapshots__/DefaultLayout.test.ts.snap
@@ -756,8 +756,8 @@ exports[`DefaultLayout > renders 1`] = `