mirror of
https://github.com/MrXujiang/h5-Dooring.git
synced 2026-01-07 20:38:11 +00:00
17 lines
320 B
JavaScript
17 lines
320 B
JavaScript
import React from 'react'
|
||
import { Result } from 'antd';
|
||
|
||
function MobileTip(props) {
|
||
return (
|
||
<div>
|
||
<Result
|
||
status="500"
|
||
title="Dooring热情❤️提示"
|
||
subTitle="你好,客官,请在PC端使用Dooring哦~"
|
||
/>
|
||
</div>
|
||
);
|
||
}
|
||
|
||
export default MobileTip;
|