Files
react-native-svg/apps/common/example/examples/index.tsx
Jakub Grzywacz b3b175a7fb feat: move examples to ./apps (#2507)
# Summary

Due to the large number of example apps in the repository, I decided to
change the structure and move all applications into an "apps" folder to
maintain a clear structure.
2024-10-25 16:12:23 +02:00

46 lines
1.0 KiB
TypeScript

import * as Circle from './Circle';
import * as Clipping from './Clipping';
import * as Ellipse from './Ellipse';
import * as G from './G';
import * as Gradients from './Gradients';
import * as Image from './Image';
import * as Line from './Line';
import * as Markers from './Markers';
import * as Mask from './Mask';
import * as PanResponder from './PanResponder';
import * as Path from './Path';
import * as Polygon from './Polygon';
import * as Polyline from './Polyline';
import * as Reanimated from './Reanimated';
import * as Rect from './Rect';
import * as Reusable from './Reusable';
import * as Stroking from './Stroking';
import * as Svg from './Svg';
import * as Text from './Text';
import * as TouchEvents from './TouchEvents';
import * as Transforms from './Transforms';
export const examples = {
Svg,
Rect,
Circle,
Ellipse,
Line,
Polygon,
Polyline,
Path,
Text,
Stroking,
G,
Gradients,
Clipping,
Image,
TouchEvents,
Reusable,
PanResponder,
Reanimated,
Transforms,
Markers,
Mask,
};