import React from "react" import Start from "./start" import StartPrivate from "./start-private" import Reply from "./reply" import Edit from "./edit" export default function(props) { if (props.mode === "START") { return } else if (props.mode === "START_PRIVATE") { return } else if (props.mode === "REPLY") { return } else if (props.mode === "EDIT") { return } else { return null } }