mirror of https://github.com/kern/filepizza
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
362 B
JavaScript
14 lines
362 B
JavaScript
import React from 'react';
|
|
|
|
export default class FileDescription extends React.Component {
|
|
|
|
render() {
|
|
return <div className="file-description">
|
|
<span className="file-name">{this.props.file.name}</span>
|
|
<span className="file-size">{this.props.file.size}</span>
|
|
<span className="file-type">{this.props.file.type}</span>
|
|
</div>;
|
|
}
|
|
|
|
}
|