mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-06-17 22:19:15 +00:00
10 lines
283 B
JavaScript
10 lines
283 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
"use strict";
|
|
|
|
const { createStore } = require("devtools/client/shared/vendor/redux");
|
|
|
|
// Current mockup does not support any middleware
|
|
module.exports = () => createStore;
|