import React, { useState } from 'react'; import { Input, View, Button, Link } from 'framework7-react'; const viewStyle = { height: 30 }; const contentStyle = { flexGrow: 1 }; const CellEditorView = props => { const [expanded, setExpanded] = useState(false); const expandClick = e => { setExpanded(!expanded); }; return
{props.cellName} {props.onClickToOpenAddOptions('function', '#idx-btn-function');}}>