Skip to content

Instantly share code, notes, and snippets.

View ZhaoMuwei's full-sized avatar
Rollin' On

ZhaoMuwei ZhaoMuwei

Rollin' On
View GitHub Profile
@ZhaoMuwei
ZhaoMuwei / App.jsx
Last active December 7, 2021 11:09
Simple wrapper for react-codemirror2 to make it work well with Antd(Version 3.x) form component(<Form>).
import React from "react";
// antd version 3.26
import {Form} from "antd";
// react-codemirror2 version 7.2.1
import {Controlled as CodeMirror} from "react-codemirror2";
import CodeMirrorWrapper from "./CodeMirrorWrapper";
import "codemirror/lib/codemirror.css";
import "codemirror/theme/material.css";