You can add it as unicode like
child: new Text('2018 \u00a9 Author's Name'),
or
child: new Text('2018 © Author's Name'),
See also
- How can I write a 3 byte unicode character as string literal
You can add it as unicode like
child: new Text('2018 \u00a9 Author's Name'),
or
child: new Text('2018 © Author's Name'),
See also