= (
+ props: IGalleryFileInfoPanelProps
+) => {
+ function renderChecksum() {
+ return (
+
+ Checksum
+ {props.gallery.checksum}
+
+ );
+ }
+
+ function renderPath() {
+ const {
+ gallery: { path },
+ } = props;
+ return (
+
+ );
+ }
+
+ return (
+
+ {renderChecksum()}
+ {renderPath()}
+
+ );
+};