Skip to content

Commit

Permalink
Added accordion (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Severino authored Aug 27, 2024
1 parent 559fba2 commit cd1f70b
Show file tree
Hide file tree
Showing 9 changed files with 16,840 additions and 9,888 deletions.
2 changes: 0 additions & 2 deletions .storybook/i18n.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import { createI18n } from "vue-i18n";

import 'bootstrap/dist/css/bootstrap.min.css';

const messages = {
en: {
global: {
Expand Down
3 changes: 3 additions & 0 deletions .storybook/preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ import { setup, type Preview } from "@storybook/vue3";
import { fn } from "@storybook/test";
import i18n from "./i18n";

import 'bootstrap';
import 'bootstrap/dist/css/bootstrap.min.css';

setup((app) => {
app.use(i18n)
})
Expand Down
5 changes: 5 additions & 0 deletions .storybook/utils.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export async function sleep(milliseconds: number): Promise<void> {
return new Promise((resolve) => {
setTimeout(resolve, milliseconds);
});
}
Loading

0 comments on commit cd1f70b

Please sign in to comment.