mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 19:44:15 +00:00
14 lines
325 B
JavaScript
14 lines
325 B
JavaScript
import React from "react"
|
|
import { Result } from "antd"
|
|
|
|
import "./index.less"
|
|
|
|
export default (props) => {
|
|
return <div className="trendingsBrowser">
|
|
<Result
|
|
status="404"
|
|
title="Not implemented"
|
|
subTitle="Sorry, but this feature is not implemented yet."
|
|
/>
|
|
</div>
|
|
} |