Repository URL to install this package:
|
Version:
0.14.1 ▾
|
import React from 'react'
import { SnackBar } from 'src/components/features/SnackBar'
import {
AutoDismissingSnackBarProps,
AutoDismissingSnackBarState,
} from './typings'
export function defaultRenderSnackBar(props: AutoDismissingSnackBarProps, state: AutoDismissingSnackBarState) {
return <SnackBar {...props} state={state} />
}