gabsocial --> soapbox paths

This commit is contained in:
Alex Gleason
2020-05-28 17:52:07 -05:00
parent 010638cd9b
commit d24dcb3e60
609 changed files with 470 additions and 470 deletions

View File

@ -0,0 +1,17 @@
import React from 'react';
import ImmutablePureComponent from 'react-immutable-pure-component';
export default class ProgressBar extends ImmutablePureComponent {
render() {
const { progress } = this.props;
return (
<div className='progress-bar'>
<div className='progress-bar__progress' style={{ width: `${Math.floor(progress*100)}%` }} />
</div>
);
}
};