index.js 594 B

12345678910111213141516171819
  1. /**
  2. * Copyright (c) Facebook, Inc. and its affiliates.
  3. *
  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. * @flow strict-local
  8. * @format
  9. */
  10. 'use strict';
  11. import Header from './components/Header';
  12. import LearnMoreLinks from './components/LearnMoreLinks';
  13. import Colors from './components/Colors';
  14. import DebugInstructions from './components/DebugInstructions';
  15. import ReloadInstructions from './components/ReloadInstructions';
  16. export {Header, LearnMoreLinks, Colors, DebugInstructions, ReloadInstructions};