File: MyComponent.tsx

package info (click to toggle)
node-rollup-plugin-node-resolve 15.2.3%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,348 kB
  • sloc: javascript: 2,621; makefile: 10
file content (7 lines) | stat: -rw-r--r-- 185 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
// To make this very clearly TypeScript and not just JS with a TS extension
type TestType = string | string[];
function MyComponent() {
  return 'It works!';
}

export { MyComponent };