mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 17:24:15 +01:00
20 lines
432 B
JavaScript
20 lines
432 B
JavaScript
|
import React from 'react'
|
||
|
import { getContext } from 'kea'
|
||
|
import { loadPostHogJS } from '~/loadPostHogJS'
|
||
|
import '~/styles'
|
||
|
|
||
|
loadPostHogJS()
|
||
|
window.getReduxState = () => getContext().store.getState()
|
||
|
|
||
|
export const parameters = {
|
||
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
||
|
controls: {
|
||
|
matchers: {
|
||
|
color: /(background|color)$/i,
|
||
|
date: /Date$/,
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
export const decorators = []
|