UNPKG

contiago-toolbar

Version:

One of the options for outputting content from contiago xml-server

18 lines (15 loc) 320 B
import React from 'react'; import DescriptionWrapper from './DescriptionWrapper'; const FileDescription = ({ title, size }) => { return ( <DescriptionWrapper> <div> { title } </div> <div> { size } MB </div> </DescriptionWrapper> ); } export default FileDescription;