mirror of
https://github.com/pacnpal/Roo-Code.git
synced 2025-12-20 04:11:10 -05:00
18 lines
265 B
TypeScript
18 lines
265 B
TypeScript
import type { Preview } from "@storybook/react"
|
|
|
|
import "../src/index.css"
|
|
import "./vscode.css"
|
|
|
|
const preview: Preview = {
|
|
parameters: {
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/i,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
export default preview
|