aboutsummaryrefslogtreecommitdiff
path: root/src/PreviewTextCursor.tsx
blob: 6818bf28c2b25b3b2c6dcf853f7de7d9c60008d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React = require("react");
import { observer } from "mobx-react";

@observer
export class PreviewTextCursor extends React.Component {

    render() {
        return (
            <div>

            </div>
        )
    };

}