# Animated

## Animated elements

Each grid element, such as Cols, Rows, Containers and Flexes can be exported using an animated tag. This will apply an animated wrapper from react-spring.&#x20;

Example

{% code title="App.tsx" %}

```javascript
import { AnimatedCol, Row, Container } from "axelra-styled-bootstrap-grid";
import { useSpring } from "react-spring";

export const App = () => {
  const props = useSpring({ opacity: 1, from: { opacity: 0 } });
  return (
    <Container>
      <Row>
        <AnimatedCol style={props}>
          Lorem ipsum dolor sit amet, consectetur adipisicing elit. Asperiores
          cupiditate, fugit laboriosam magnam rerum similique suscipit
          voluptatum! Autem dignissimos, et fuga modi nihil nostrum numquam
          quaerat quasi sequi veniam veritatis?
        </AnimatedCol>
      </Row>
    </Container>
  );
};
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://lucas-pelloni.gitbook.io/styled-bootstrap-grid/react-spring.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
