8 lines
179 B
JavaScript
8 lines
179 B
JavaScript
const createState = ({ searchPath, issuesPath, mrPath, searchContext }) => ({
|
|
searchPath,
|
|
issuesPath,
|
|
mrPath,
|
|
searchContext,
|
|
search: '',
|
|
});
|
|
export default createState;
|