// This entire file is basically a hack to make the // "preset" functionality of post_status_form work import { h, resolveComponent } from "vue" import PostStatusForm from "../post_status_form/post_status_form.vue" const Share = { name: 'Share', render () { return h(resolveComponent('PostStatusForm')) }, components: { PostStatusForm } } export default Share