Merge pull request #2962 from github/koesie10/use-memo

Add missing useMemo import
This commit is contained in:
Koen Vlaswinkel
2023-10-12 13:33:41 +02:00
committed by GitHub

View File

@@ -1,5 +1,5 @@
import * as React from "react";
import { useCallback, useState } from "react";
import { useCallback, useMemo, useState } from "react";
import { Method } from "../../model-editor/method";
import { ModeledMethod } from "../../model-editor/modeled-method";
import { styled } from "styled-components";