|
|
```markdown
|
|
|
# Module Overview
|
|
|
|
|
|
This module serves as an entry point for exporting various components used in the application. It consolidates and re-exports components from different files, making them easily accessible for import in other parts of the application.
|
|
|
|
|
|
## Dependencies
|
|
|
|
|
|
- This module relies on several internal components, each defined in their respective files.
|
|
|
|
|
|
## Exported Components
|
|
|
|
|
|
### ShapeList
|
|
|
- **Description**: Exports all functionalities from the `ShapeList` module.
|
|
|
|
|
|
### ActionList
|
|
|
- **Description**: Default export from the `ActionList` module.
|
|
|
- **Usage**:
|
|
|
```javascript
|
|
|
import ActionList from './ActionList';
|
|
|
```
|
|
|
|
|
|
### FeatureInfo
|
|
|
- **Description**: Default export from the `FeatureInfo` module.
|
|
|
- **Usage**:
|
|
|
```javascript
|
|
|
import FeatureInfo from './FeatureInfo';
|
|
|
```
|
|
|
|
|
|
### GoogleMap
|
|
|
- **Description**: Default export from the `GoogleMap` module.
|
|
|
- **Usage**:
|
|
|
```javascript
|
|
|
import GoogleMap from './GoogleMap';
|
|
|
```
|
|
|
|
|
|
### ImageChooserCard
|
|
|
- **Description**: Default export from the `ImageChooserCard` module.
|
|
|
- **Usage**:
|
|
|
```javascript
|
|
|
import ImageChooserCard from './ImageChooserCard';
|
|
|
```
|
|
|
|
|
|
### ImageChooserForm
|
|
|
- **Description**: Default export from the `ImageChooserForm` module.
|
|
|
- **Usage**:
|
|
|
```javascript
|
|
|
import ImageChooserForm from './ImageChooserForm';
|
|
|
```
|
|
|
|
|
|
### ImageViewer
|
|
|
- **Description**: Default export from the `ImageViewer` module.
|
|
|
- **Usage**:
|
|
|
```javascript
|
|
|
import ImageViewer from './ImageViewer';
|
|
|
```
|
|
|
|
|
|
### LayerActions
|
|
|
- **Description**: Default export from the `LayerActions` module.
|
|
|
- **Usage**:
|
|
|
```javascript
|
|
|
import LayerActions from './LayerActions';
|
|
|
```
|
|
|
|
|
|
### LayerViewer
|
|
|
- **Description**: Default export from the `LayerViewer` module.
|
|
|
- **Usage**:
|
|
|
```javascript
|
|
|
import LayerViewer from './LayerViewer';
|
|
|
```
|
|
|
|
|
|
### LoadedImagesAccordion
|
|
|
- **Description**: Default export from the `LoadedImagesAccordion` module.
|
|
|
- **Usage**:
|
|
|
```javascript
|
|
|
import LoadedImagesAccordion from './LoadedImagesAccordion';
|
|
|
```
|
|
|
|
|
|
### OpacityControl
|
|
|
- **Description**: Default export from the `OpacityControl` module.
|
|
|
- **Usage**:
|
|
|
```javascript
|
|
|
import OpacityControl from './OpacityControl';
|
|
|
```
|
|
|
```
|
|
|
|