UNPKG

@atlaskit/onboarding

Version:

An onboarding spotlight introduces new features to users through focused messages or multi-step tours.

12 lines (11 loc) 327 B
import React, { type ReactNode } from 'react'; interface ValueChangedProps { value: any; onChange: Function; children: ReactNode; } export default class ValueChanged extends React.Component<ValueChangedProps> { componentDidUpdate(prevProps: ValueChangedProps): void; render(): React.ReactNode; } export {};