/** * Copyright (c) 2017-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ 'use strict'; const CompLibrary = require('../../core/CompLibrary.js'); const React = require('react'); const Container = CompLibrary.Container; const GridBlock = CompLibrary.GridBlock; const translate = require('../../server/translate.js').translate; class Help extends React.Component { render() { const supportLinks = [ { content: ( Find what you're looking for in our detailed documentation and guides.\n\n- Learn how to [get started](/metro/docs/en/getting-started.html) with Metro.\n- [Troubleshoot](/metro/docs/en/troubleshooting.html) problems with Metro.\n- Learn how to [configure Metro](/metro/docs/en/configuration.html).\n- Look at the full [API Reference](/metro/docs/en/api.html). ), title: Browse the docs, }, { content: ( Ask questions and find answers from other Metro users like you.\n\n- Join the [#metro](https://discordapp.com/channels/102860784329052160/103622435865104384) channel on [Reactiflux](http://www.reactiflux.com/), a Discord community.\n- Many members of the community use Stack Overflow. Read through the [existing questions](https://stackoverflow.com/questions/tagged/metrojs) tagged with **metrojs** or [ask your own](https://stackoverflow.com/questions/ask)! ), title: Join the community, }, { content: ( Find out what's new with Metro.\n\n- Follow [Metro](https://twitter.com/MetroBundler) on Twitter.\n- Subscribe to the [Metro blog](/metro/blog/). ), title: Stay up to date, }, ]; return (

Need help?

Metro Bundler is worked on full-time by Facebook's JavaScript Foundation team. Team members are often around and available for questions.

); } } Help.defaultProps = { language: 'en', }; module.exports = Help;