import Joyride from 'react-joyride'; import {useTheme} from '@material-ui/core/styles'; import {useTranslation} from 'react-i18next'; import useTour from '../../hooks/useTour'; interface Props {} const OnBoardingTour = (props: Props) => { const theme = useTheme(); const {t} = useTranslation(); const {run, steps, step, onTourChange} = useTour(); return ( ); }; export default OnBoardingTour;