import React from 'react' import Link from 'next/link' import CustomKeygenEditor from './CustomKeygenEditor' const content = { 'first-editor': 'This example shows how to have multiple instances of the editor.', 'second-editor': 'Without a custom key generator, you could not focus here.' } class MultipleEditors extends React.Component { render () { return ( Go to Home {Object.keys(content).map((key, idx) => ( ))} ) } } export default MultipleEditors