hihelllo 2020. 4. 3. 10:15
import React from 'react';
import { Card } from 'antd';
import TitleContainer from 'components/title';
import FilesContainer from 'components/files';

const File = ({ match }) => {
    return (
        <>
            <TitleContainer url={match.url} />
            <Card>
                <FilesContainer url={match.url} />
            </Card>
        </>
    );
};

export default File;