
* Extract Side Panel from App component * Refactor SidePanel component - Remove unnecessary props (we are already passing appState as a prop) - Remove unnecessary allback (we are already passing setState)
14 lines
440 B
TypeScript
14 lines
440 B
TypeScript
export { newElement, duplicateElement } from "./newElement";
|
|
export {
|
|
getElementAbsoluteCoords,
|
|
getDiamondPoints,
|
|
getArrowPoints
|
|
} from "./bounds";
|
|
|
|
export { handlerRectangles } from "./handlerRectangles";
|
|
export { hitTest } from "./collision";
|
|
export { resizeTest } from "./resizeTest";
|
|
export { isTextElement } from "./typeChecks";
|
|
export { textWysiwyg } from "./textWysiwyg";
|
|
export { redrawTextBoundingBox } from "./textElement";
|