@remotion/studio
Version:
APIs for interacting with the Remotion Studio
16 lines (15 loc) • 476 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TimelineEmptyState = void 0;
const jsx_runtime_1 = require("react/jsx-runtime");
const colors_1 = require("../../helpers/colors");
const container = {
display: 'flex',
flex: 1,
height: 0,
backgroundColor: colors_1.BACKGROUND,
};
const TimelineEmptyState = () => {
return jsx_runtime_1.jsx("div", { style: container });
};
exports.TimelineEmptyState = TimelineEmptyState;