mirror of
https://github.com/IT4Change/gradido.git
synced 2026-04-04 16:45:27 +00:00
20 lines
506 B
TypeScript
20 lines
506 B
TypeScript
export { contributionLinks } from 'database'
|
|
|
|
/*
|
|
export const contributionLinks: ContributionLinkInterface[] = [
|
|
{
|
|
name: 'Dokumenta 2017',
|
|
memo: 'Vielen Dank für deinen Besuch bei der Dokumenta 2017',
|
|
amount: 200,
|
|
validFrom: new Date(2017, 3, 8),
|
|
validTo: new Date(2017, 6, 16),
|
|
},
|
|
{
|
|
name: 'Dokumenta 2022',
|
|
memo: 'Vielen Dank für deinen Besuch bei der Dokumenta 2022',
|
|
amount: 200,
|
|
validFrom: new Date(2022, 5, 18),
|
|
validTo: new Date(2022, 8, 25),
|
|
},
|
|
]
|
|
*/ |