mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
10 lines
138 B
TypeScript
10 lines
138 B
TypeScript
import * as React from 'react';
|
|
|
|
export class App extends React.Component<any, any> {
|
|
|
|
render() {
|
|
return <button />;
|
|
}
|
|
|
|
}
|