blob: f67b23f73b05e843f8b1e37c1fa21605ecc09f53 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export function main() {
return ['div',
'application in development - ',
['a', {
props: {
href: 'https://github.com/bozokopic/opcut'
}},
'Github page'
]
];
}
|