Flow.jsx 211 Bytes
Newer Older
熊成伟's avatar
熊成伟 committed
1 2 3 4 5 6 7 8 9 10 11 12
import React from 'react';
import StepCard from '../../components/StepCard'

const Flow = () => {
    return (
        <div id="event-flow">
           <StepCard/>
        </div>
    );
};

export default Flow;