mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/46632 Changelog: [General][Added] Add Playground to RNTester for testing out features & submitting reproducers. **Context** - Adding the Playground from Catalyst to RNTester - This should help folks test React Native features for a particular version **Change** - Add a new playground component to RNTester - Add a new reducer action for opening an example from navbar press - Fixed typing issues - Add icon from this fb asset pack: https://www.internalfb.com/assets/set/facebook_icons/nucleus-beaker/variant_outline-size_24?q=beaker - Matched background color using this imagemagick script **dark** ``` convert input.png -fill 'rgb(178,180,186)' -colorize 100% output.png ``` **light** ``` convert input.png -fill 'rgb(81,82,84)' -colorize 100% output.png ``` Reviewed By: NickGerleman Differential Revision: D61972594 fbshipit-source-id: 4a5523a84a6ef09d3266d5f56825907bd3fbe4b5
19 lines
551 B
JavaScript
19 lines
551 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow strict-local
|
|
*/
|
|
|
|
import type {RNTesterModuleExample} from '../../types/RNTesterTypes';
|
|
|
|
import Playground from './RNTesterPlayground';
|
|
|
|
export const title = Playground.title;
|
|
export const framework = 'React';
|
|
export const description = 'Test out new features and ideas.';
|
|
export const examples: Array<RNTesterModuleExample> = [Playground];
|