We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f36388 commit a907390Copy full SHA for a907390
1 file changed
website/src/pages/releases.tsx
@@ -4,9 +4,19 @@
4
* This source code is licensed under the MIT license found in the
5
* LICENSE file in the root directory of this source tree.
6
*/
7
+import Layout from '@theme/Layout';
8
+import React, {useEffect} from 'react';
9
10
const Releases = () => {
- location.href = '/docs/next/releases';
11
+ useEffect(() => {
12
+ location.href = '/docs/next/releases';
13
+ }, []);
14
+
15
+ return (
16
+ <Layout title="Releases" wrapperClassName="versions-page">
17
+ <div style={{textAlign: 'center'}}>Redirecting...</div>
18
+ </Layout>
19
+ );
20
};
21
22
export default Releases;
0 commit comments