lbry-desktop/src/renderer/page/publish/view.jsx

9 lines
177 B
React
Raw Normal View History

2017-06-06 23:19:12 +02:00
import React from "react";
import PublishForm from "component/publishForm";
2016-11-22 21:19:08 +01:00
const PublishPage = props => {
return <PublishForm {...props} />;
};
2017-06-17 19:59:18 +02:00
2016-11-22 21:19:08 +01:00
export default PublishPage;