Flow.jsx 237 Bytes
Newer Older
熊成伟's avatar
熊成伟 committed
1
import React from 'react';
熊成伟's avatar
熊成伟 committed
2 3
import StepCard from '../../components/StepCard'

熊成伟's avatar
熊成伟 committed
4
const Flow = (props) => {
熊成伟's avatar
熊成伟 committed
5
    const {data} = props
熊成伟's avatar
熊成伟 committed
6
    return (
熊成伟's avatar
熊成伟 committed
7
        <div>
熊成伟's avatar
熊成伟 committed
8
           <StepCard data={data}/>
熊成伟's avatar
熊成伟 committed
9 10 11 12 13
        </div>
    );
};

export default Flow;