mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-08-06 05:46:26 +00:00
- Also, extract utilities into utils module -- capitalizeString, getDateTime, isInputLike
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import { ExcalidrawElement } from "../element/types";
|
|
|
|
export const createScene = () => {
|
|
const elements = Array.of<ExcalidrawElement>();
|
|
return { elements };
|
|
};
|