如何使这些命令作为Android上的脚本工作?

时间:2017-07-06 23:20:31

标签: android linux shell

基本上我有这个代码,我想让它在运行所述脚本时以脚本形式运行:

import React from 'react';
import Input from'./Input';
import recipes from'../data.json';

class App extends React.Component{
    constructor(props) {
        super();

}
render(){
    return(
        <div>
            <Input data={recipes} />
        </div>
    )
}

我真的不知道如何转换它,因此它作为.sh(?)文件运行。

0 个答案:

没有答案