You can not 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
378 B
16 lines
378 B
import Panel from './Panel'; |
|
import { HeaderText } from './Text'; |
|
import InnerPanel from './InnerPanel'; |
|
import ProgressBar from './ProgressBar'; |
|
|
|
const ReplicatedStorage = (): JSX.Element => { |
|
return ( |
|
<Panel> |
|
<HeaderText text="Replicated Storage" /> |
|
<InnerPanel /> |
|
<ProgressBar allocated={20} /> |
|
</Panel> |
|
); |
|
}; |
|
|
|
export default ReplicatedStorage;
|
|
|