# ShapeList Module
This module exports the `ShapeList` component, which is the default export from the `./ShapeList` file.
## Dependencies
- This module relies on the `ShapeList` component defined in the `./ShapeList` file.
## Usage
To use the `ShapeList` component in your project, you can import it as follows:
```javascript
import { ShapeList } from 'path-to-this-module';
Example
Here is a simple example of how to use the ShapeList
component:
import React from 'react';
import { ShapeList } from 'path-to-this-module';
const App = () => (
<div>
<h1>Shapes</h1>
<ShapeList />
</div>
);
export default App;