Created
March 31, 2022 14:16
-
-
Save scottgamer/96763d54c29c03edb74e431aba418056 to your computer and use it in GitHub Desktop.
mock server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { setupServer } from "msw/node"; | |
| import { handlers } from "./handlers"; | |
| const server = setupServer(...handlers); | |
| export default server; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment