6 lines
239 B
TypeScript
6 lines
239 B
TypeScript
|
|
import { ASSETS_CDN_URL } from "./ThirdPartyConstants";
|
||
|
|
export const getInfoThumbnail = () =>
|
||
|
|
`${ASSETS_CDN_URL}/crud/crud_info_thumbnail.png`;
|
||
|
|
export const getInfoImage = (): string =>
|
||
|
|
`${ASSETS_CDN_URL}/crud/working-flow-chart.png`;
|