Summary: With the new design from vpileggi, this diff separated a new app UI to the current one. This diffs show the toggle switch to enable Sandy UI for devs who are in `flipper_sandy` GK. When toggled, it will bring Sandy UI up. Reviewed By: mweststrate Differential Revision: D23599398 fbshipit-source-id: d85c707e0fe7726a418b3551cedb36e455fb7d14
16 lines
319 B
TypeScript
16 lines
319 B
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
export default function (_props: {
|
|
toggled: boolean;
|
|
onChange: (value: boolean) => void;
|
|
}) {
|
|
return null;
|
|
}
|