import { useRef, useState, useEffect } from 'react' import Wizard from '@components/wizard' import Address from '../../views/forms/wizard/steps-with-validation/Address' import SocialLinks from '../../views/forms/wizard/steps-with-validation/SocialLinks' import PersonalInfo from '../../views/forms/wizard/steps-with-validation/PersonalInfo' import AccountDetails from '../../views/forms/wizard/steps-with-validation/AccountDetails' import { Card, CardBody, CardTitle, CardText, Form, FormGroup, Label, Input, CustomInput, Button } from 'reactstrap' import '@styles/base/pages/page-auth.scss' import { ArrowRight } from 'react-feather' import '../../assets/css/custom.css' const DesignRegister = () => { const [stepper, setStepper] = useState(null) const ref = useRef(null) const steps = [ { id: 'account-details', title: '약관동의', subtitle: 'STEP01', content: } ] return (
setStepper(el)} ref={ref} steps={steps} />
) } export default DesignRegister;