Skip to content

Commit c480c26

Browse files
committed
chore AB#47: Created match type
1 parent 7d3325b commit c480c26

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/types/match.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import {
2+
shape,
3+
string,
4+
} from 'prop-types';
5+
6+
7+
export const matchType = shape({
8+
params: shape({
9+
resource: string,
10+
}),
11+
});
12+
13+
export default {matchType};
14+

0 commit comments

Comments
 (0)