aboutsummaryrefslogtreecommitdiff
path: root/src/PreviewTextCursor.tsx
diff options
context:
space:
mode:
authorlaurawilsonri <laura_wilson@brown.edu>2019-02-16 15:34:20 -0500
committerlaurawilsonri <laura_wilson@brown.edu>2019-02-16 15:34:20 -0500
commitc835f47a32336c12e6ad7497b72694bb06dc2487 (patch)
tree0fc567d0d3c30c6e2e89e7a71747aff543bf1caf /src/PreviewTextCursor.tsx
parent9f8653ab3d7f82a5d82b925bf339bef8d6723f5c (diff)
added blinking preview text cursor on click
Diffstat (limited to 'src/PreviewTextCursor.tsx')
-rw-r--r--src/PreviewTextCursor.tsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/PreviewTextCursor.tsx b/src/PreviewTextCursor.tsx
new file mode 100644
index 000000000..6818bf28c
--- /dev/null
+++ b/src/PreviewTextCursor.tsx
@@ -0,0 +1,15 @@
+import React = require("react");
+import { observer } from "mobx-react";
+
+@observer
+export class PreviewTextCursor extends React.Component {
+
+ render() {
+ return (
+ <div>
+
+ </div>
+ )
+ };
+
+} \ No newline at end of file