signal-desktop/js/react/test.ts
Scott Nonnenberg 893fb1cb9e
Introduce React/TypeScript/TSLint into app for new UI components
npm run transpile
  Works on files under js/react/
  Outputs files right next to the .tsx file

This is part of our `grunt dev` task, as well as the default grunt task,
which does everything else necessary to get a raw git checkout ready to
run.
2018-04-04 16:08:27 -07:00

7 lines
146 B
TypeScript

import { InlineReply } from './sub/test2';
// console.log(InlineReply);
export function greeter(person: any) {
return 'Hello, ' + person;
}