import React, { Component } from 'react' export default class FootnoteForm extends Component { state = { editing: false, } render() { const { footnote, index } = this.props return (
{index}{'. '}
) } }