mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
7 lines
126 B
HTML
7 lines
126 B
HTML
<p>找不到此页,三秒后返回首页...</p>
|
|
<script>
|
|
setTimeout(function() {
|
|
location.href = '/';
|
|
}, 3000);
|
|
</script>
|