mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-09-13 23:11:10 +00:00
17 lines
265 B
TypeScript
17 lines
265 B
TypeScript
import type { Preview } from "@storybook/react"
|
|
|
|
import "./vscode.css"
|
|
import "../src/index.css"
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
export default preview
|