create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
24 lines (18 loc) • 517 B
Flow
/**
* 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
* @flow strict
*/
;
// Add a random require to fill the bundle with some sourcecode.
require('./AssetRegistry');
const calcSum = (value: string) => {
// some random function
const error = new Error('SOURCEMAP: value: ' + value);
return error;
};
module.exports = (calcSum('anything'): Error);