UNPKG

412 BJavaScriptView Raw
1'use strict';
2
3const THUMBNAIL_CREATE_WARNING = 'A thumbnail is required before creating ' +
4 'a card with this design. This is used to represent the App in the ' +
5 'mobile application and the Appstore experience.';
6
7const CREATE_THUMBNAIL = 'Place a 300x300 image named thumbnail.png in the ' +
8 'base directory of your design.';
9
10module.exports = {
11 CREATE_THUMBNAIL,
12 THUMBNAIL_CREATE_WARNING,
13};