// /** // * Copyright (c) 2017-present, Facebook, Inc. // * // * This source code is licensed under the MIT license found in the // * LICENSE file in the root directory of this source tree. // */ // const React = require('react'); // const CompLibrary = require('../../core/CompLibrary'); // const Container = CompLibrary.Container; // const CWD = process.cwd(); // const versions = require(`${CWD}/versions.json`); // function Versions(props) { // const {config: siteConfig} = props; // const latestVersion = versions[0]; // const repoUrl = `${siteConfig.repoUrl}`; // return ( //
// //
//
//

{siteConfig.title} Versions

//
//

Current version

// // // // // // // {/* */} // // //
{latestVersion} // {/* You are supposed to change this href where appropriate // Example: href="/docs(/:language)/:id" */} // // Documentation // // // Source Code // // Release Notes //
//

Pre-release versions

// // // // // // // // //
next // {/* You are supposed to change this href where appropriate // Example: href="/docs(/:language)/next/:id" */} // // Documentation // // // Source Code //
//

Past Versions

//

Here you can find previous versions of the documentation.

// // // {versions.map( // version => // version !== latestVersion && version !== "next" && ( // // // // // // ), // )} // //
{version} // {/* You are supposed to change this href where appropriate // Example: href="/docs(/:language)/:version/:id" */} // // Documentation // // // // Release Notes // //
//

// You can find past versions of this project on{' '} // GitLab. //

//
//
//
// ); // } // module.exports = Versions;