cnap-cobre/synapse

View on GitHub
frontend/src/store/ui/browserPaths/BrowserPaths.js

Summary

Maintainability
A
0 mins
Test Coverage
import { SET_BROWSER_PATH } from './types';
 
export function setBrowserPath(system, path) {
return {
type: SET_BROWSER_PATH,
system,
path,
};
}