All checks were successful
Build and Deploy DAVE | DMGs Site / deploy (push) Successful in 35s
14 lines
394 B
TypeScript
14 lines
394 B
TypeScript
import elementComponent from './element.ts';
|
|
import calloutComponent from './callout.ts';
|
|
import sidenoteComponent from './sidenote.ts';
|
|
import figureComponent from './figure.ts';
|
|
import tablewrapperComponent from './tablewrapper.ts';
|
|
|
|
export const generalComponents = {
|
|
...elementComponent,
|
|
...calloutComponent,
|
|
...sidenoteComponent,
|
|
...figureComponent,
|
|
...tablewrapperComponent,
|
|
};
|