-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathindex.js
More file actions
22 lines (17 loc) · 674 Bytes
/
index.js
File metadata and controls
22 lines (17 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
* @format
* @lint-ignore-every XPLATJSCOPYRIGHT1
*/
import { AppRegistry } from "react-native";
import App from "./App";
import { name as appName } from "./app.json";
/** ----------- Elements --------------------- */
import Fade from "./components/Fade";
import SlideUp from "./components/SlideUp";
import SlideDown from "./components/SlideDown";
import SlideInRight from "./components/SlideInRight";
import Rotate from "./components/Rotate";
import Zoom from "./components/Zoom";
import SlideInLeft from "./components/SlideInLeft";
export { Fade, SlideDown, SlideInRight, SlideUp, Zoom, Rotate, SlideInLeft };
AppRegistry.registerComponent(appName, () => App);