refer feed component to explore

This commit is contained in:
SrGooglo 2022-12-14 10:50:25 +00:00
parent 3b3b386fe6
commit f831f8d34c

View File

@ -1,5 +1,5 @@
import React from "react" import React from "react"
import { Result } from "antd" import { Result, Button } from "antd"
import "./index.less" import "./index.less"
@ -8,7 +8,11 @@ export default (props) => {
<Result <Result
status="404" status="404"
title="Not implemented" title="Not implemented"
subTitle="Sorry, but this feature is not implemented yet." subTitle={<>
<span>Sorry, this feature is not implemented yet</span>
<br />
<span>But you can explore all streamings in <a onClick={() => app.setLocation("/tv/explore")}>explore</a> tab</span>
</>}
/> />
</div> </div>
} }