mirror of
https://github.com/urbit/shrub.git
synced 2025-01-01 17:16:47 +03:00
term: fix babel & tsc issues
This commit is contained in:
parent
ed264ea251
commit
b9c354b033
@ -11,12 +11,10 @@ import './css/custom.css';
|
||||
import Store from './store';
|
||||
import Subscription from './subscription';
|
||||
|
||||
class TermApp extends Component {
|
||||
class TermApp extends Component<any, any> {
|
||||
store: Store;
|
||||
api: any;
|
||||
subscription: any;
|
||||
declare props: any;
|
||||
declare state: any;
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.store = new Store();
|
||||
|
@ -1,9 +1,8 @@
|
||||
import { BaseInput, Box, Row } from '@tlon/indigo-react';
|
||||
import React, { Component } from 'react';
|
||||
|
||||
export class Input extends Component {
|
||||
export class Input extends Component<any, {}> {
|
||||
inputRef: React.RefObject<unknown>;
|
||||
declare props: any;
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.state = {};
|
||||
|
Loading…
Reference in New Issue
Block a user