# Handling Global CSS warning

Once you have [exported the code](/jsx.design/getting-started/markdown.md) and you visit `localhost:3000`, a warning may be displayed in the output window, prompting you to import the global styles. You can resolve it by following the below steps:

{% tabs %}
{% tab title="NextJS Project" %}

* Resolve this by adding the following import in your **globals.css** file:

```css
@import './jsx-design/globals.css';
```

> If there is an existing `globals.css` file in your project, you may need to comment out or replace it with the current import to avoid conflicts.
> {% endtab %}

{% tab title="CRA" %}

* Resolve this by adding the following import in your **index.css** file:

```css
@import './jsx-design/globals.css';
```

> If there is an existing `globals.css` file in your project, you may need to comment out or replace it with the current import to avoid conflicts.
> {% endtab %}
> {% endtabs %}

***


---

# 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://skyslit.gitbook.io/jsx.design/troubleshooting/handling-global-css-warning.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.
