blob: 4bfe0732f2194d4bc5fca1422a8fb356ef83f633 (
plain) (
tree)
|
|
import React from "react";
import "../index.css";
export default class Right extends React.Component {
constructor(props) {
super(props);
this.state = { value: "" };
}
render() {
return (
<div class="split right">
<p class="markdown-placeholder">Parsed Markdown goes here!!!</p>
</div>
);
}
}
|