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.
16 lines
384 B
JavaScript
16 lines
384 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>
|
|
);
|
|
}
|
|
|
|
}
|