aboutsummaryrefslogtreecommitdiffstats
path: root/spring-front/src/components/Right.js
blob: 4bfe0732f2194d4bc5fca1422a8fb356ef83f633 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>
    );
  }
}