- Decreased the delay to 3 seconds and - Added CSS animation instead of GIF which reduces the load time. - Added Placeholder image for the information image to show while it is loading.
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`;
|