- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
13 lines
254 B
JavaScript
13 lines
254 B
JavaScript
import { animations } from '../../motion/features/animations.mjs';
|
|
import { createDomVisualElement } from './create-visual-element.mjs';
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
const domMin = {
|
|
renderer: createDomVisualElement,
|
|
...animations,
|
|
};
|
|
|
|
export { domMin };
|