Application Android et IOS pour l'amicale des élèves
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NewsSourcesConstants.js 377B

1234567891011121314151617181920
  1. // @flow
  2. import ICON_AMICALE from '../../assets/amicale.png';
  3. import ICON_CAMPUS from '../../assets/android.icon.png';
  4. export type NewsSourceType = {
  5. icon: number,
  6. name: string,
  7. };
  8. export default {
  9. 'amicale.deseleves': {
  10. icon: ICON_AMICALE,
  11. name: 'Amicale INSA Toulouse',
  12. },
  13. 'campus.insat': {
  14. icon: ICON_CAMPUS,
  15. name: 'Application Campus',
  16. },
  17. };