|
|
@ -1,13 +1,11 @@ |
|
|
|
import Panel from './Panel'; |
|
|
|
import Panel from './Panel'; |
|
|
|
import { HeaderText } from './Text'; |
|
|
|
import { HeaderText } from './Text'; |
|
|
|
import InnerPanel from './InnerPanel'; |
|
|
|
import ProgressBar from './ProgressBarBck'; |
|
|
|
import ProgressBar from './ProgressBar'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const ReplicatedStorage = (): JSX.Element => { |
|
|
|
const ReplicatedStorage = (): JSX.Element => { |
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<Panel> |
|
|
|
<Panel> |
|
|
|
<HeaderText text="Replicated Storage" /> |
|
|
|
<HeaderText text="Replicated Storage" /> |
|
|
|
<InnerPanel /> |
|
|
|
|
|
|
|
<ProgressBar allocated={20} /> |
|
|
|
<ProgressBar allocated={20} /> |
|
|
|
</Panel> |
|
|
|
</Panel> |
|
|
|
); |
|
|
|
); |
|
|
|