-
Dan Abramov authored
* Revert "Ignore the yarn cache directory (#2063)" This reverts commit 94149c77. * Revert "Forbid using window properties as global variables (#1840)" This reverts commit 5a7d8e89.
3a527f2a
/**
* Copyright (c) 2015-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.
*/
import React from 'react';
import aFileWithExtUnknown from './assets/aFileWithExt.unknown';
const text = aFileWithExtUnknown.includes('base64')
? atob(aFileWithExtUnknown.split('base64,')[1]).trim()
: aFileWithExtUnknown;
export default () => (
<a id="feature-unknown-ext-inclusion" href={text}>aFileWithExtUnknown</a>
);