weechatRN

Weechat relay client for iOS using websockets https://github.com/mhoran/weechatRN
git clone http://git.hanabi.in/repos/weechatRN.git
Log | Files | Refs | README | LICENSE

commit 5ae2aaff180a63e7bd337f44ba599cdc438eb51d
parent c41ec4f02123f94f01567e7cd20a17ee947983ec
Author: Johan Lindskogen <johan.lindskogen@gmail.com>
Date:   Mon,  2 Apr 2018 21:43:20 +0200

Change to typescript

Diffstat:
Dsrc/usecase/settings/SettingsList.js | 9---------
Asrc/usecase/settings/SettingsList.tsx | 7+++++++
2 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/src/usecase/settings/SettingsList.js b/src/usecase/settings/SettingsList.js @@ -1,9 +0,0 @@ -import React from "react"; - -class SettingsList extends React.Component { - render() { - return null; - } -} - -export default SettingsList; diff --git a/src/usecase/settings/SettingsList.tsx b/src/usecase/settings/SettingsList.tsx @@ -0,0 +1,7 @@ +import * as React from "react"; + +export default class SettingsList extends React.Component { + render() { + return null; + } +}