# Guide

**Start Building Your App**

This App guides you throughout building your app, providing the steps and procedure to customize.\
\
**Contents discussed in this section:**

* How to add new Component?
* How to add new Stylesheet?

#### How to add new Component <a href="#how-to-add-new-component" id="how-to-add-new-component"></a>

* Create a new folder, say `NewComponent` and place it under `/src/screens/`.
* Create a new file `index.js` , within this folder.
* Name the class same as that of folder name.

```
class NewComponent extends Component {
    . . .
    . . .
}
```

#### How to add new Stylesheet <a href="#how-to-add-new-stylesheet" id="how-to-add-new-stylesheet"></a>

Create a new file `styles.js` , place it under `/src/screens/NewComponent/`.

`import` newly created StyleSheet into the Component.

```
import styles from './styles';
class NewComponent extends Component {
    . . .
    . . .
}
```


---

# 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://legendbae.gitbook.io/legendbae-connect-to-people/guide.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.
