import React from "react"; import styles from "./index.less"; import { Typography } from "antd"; const { Paragraph } = Typography; class Demo extends React.Component { state = { str: "This is an editable text." }; onChange = str => { console.log("Content change:", str); this.setState({ str }); }; render() { return (
{this.state.str} This is a copyable text. Replace copy text.
); } } export default () => (
);