import React, { useState } from 'react' import { Button, Walkthrough } from '../../' const WalkthroughStyled = (props) => { const [state, setState] = useState({ run: false, steps: [ { title: 'Example title', content: 'This was an example of a Beacon in the Walkthrough Kit it is used as a simple indicator to inform users about a particular thing', target: '.styled', }, { title: 'Toggle', content: 'By default the walkthrough kit will cycle through each step provided.', target: '.pb_toggle_control', }, { title: 'Top Nav', content: 'By default the walkthrough kit will cycle through each step provided.', target: '.pb--page--topNav', }, ], }) return (