Skip to content

Commit

Permalink
Create QueueSelector component placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Campbell committed Oct 30, 2020
1 parent 51bb16f commit 69bc887
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/components/QueueSelector/QueueSelector.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import React from "react";
import PropTypes from "prop-types";

export default function QueueSelector(){
return (
QueueSelector
);
};

QueueSelector.propTypes = {

};

QueueSelector.defaultProps = {

};
11 changes: 11 additions & 0 deletions src/components/QueueSelector/QueueSelector.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
QueueSelector

---
```jsx
import QueueSelector from "./QueueSelector";

<QueueSelector />
```
```jsx static
<QueueSelector />
```
1 change: 1 addition & 0 deletions src/components/QueueSelector/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from "./QueueSelector";

0 comments on commit 69bc887

Please sign in to comment.