Skip to content

Instantly share code, notes, and snippets.

@ilonacodes
Created December 28, 2018 18:23
Show Gist options
  • Save ilonacodes/f002420a72b236310858caadad154b4e to your computer and use it in GitHub Desktop.
Save ilonacodes/f002420a72b236310858caadad154b4e to your computer and use it in GitHub Desktop.
// ProgressBar.js
import React from 'react';
const Range = (props) => {
return (
<div/>
);
};
const ProgressBar = (props) => {
return (
<div className="progress-bar">
<Range/>
</div>
);
};
export const ProgressBarContainer = () => {
return (
<div className="container">
<ProgressBar/>
</div>
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment