UNPKG

@salesforce/design-system-react

Version:

Salesforce Lightning Design System for React

23 lines (19 loc) 346 B
import React from 'react'; import Example from './example'; class Initial extends React.Component { static displayName = 'ExpressionInitialStateExample'; render() { return ( <Example action={this.props.action} conditions={[ { resource: '', }, ]} triggerType="all" /> ); } } export default Initial;