refactor: move GraphEditor to a folder

This commit is contained in:
linonetwo 2023-07-13 15:14:23 +08:00 committed by lin onetwo
parent 5e35d2f4df
commit 524f4d5df1
12 changed files with 1 additions and 3 deletions

View file

@ -1,11 +1,9 @@
import { sidebarWidth } from '@/constants/style';
import { Autocomplete, autocompleteClasses, Box, createFilterOptions, TextField } from '@material-ui/core';
import { PropertyMap } from 'fbp-graph/lib/Types';
import { useEffect, useMemo, useState } from 'react';
import { useTranslation } from 'react-i18next';
import styled from 'styled-components';
import type { IFBPLibrary, INoFloUIComponent } from 'the-graph';
import { makeNewID } from '../idUtils';
import { NoFloIcon } from './NoFloIcon';
const SearchBarWrapper = styled.div`

View file

@ -6,7 +6,7 @@ import { useEffect, useState } from 'react';
import { useTranslation } from 'react-i18next';
import type { IFBPLibrary } from 'the-graph';
import { GraphEditor } from './GraphEditor';
import { getBrowserComponentLibrary } from './library';
import { getBrowserComponentLibrary } from './GraphEditor/library';
import { photoboothJSON } from './photobooth.json';
export default function Workflow(): JSX.Element {