Skip to content

Commit

Permalink
Address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
chasefleming committed Oct 24, 2024
1 parent 0bae567 commit ca0ad26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/build/getting-started/fcl-quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,19 +56,19 @@ Now, let's run our app with the following `npm` command:
npm start
```

This will start the development server and open your app in the browser. You should see a page displaying `FCL App Quickstart`.
This will start the development server and open your app in the browser. You will see a page displaying `FCL App Quickstart`.

## Setting Up FCL

To interact with the Flow blockchain, we need to install the Flow Client Library (FCL). Stop the development server by pressing `Ctrl+C` in the terminal, and then run the following command to install FCL:
To interact with the Flow blockchain, we need to install the [Flow Client Library] (FCL). Stop the development server by pressing `Ctrl+C` in the terminal, and then run the following command to install FCL:

```bash
npm install @onflow/fcl --save
```

This command installs FCL and adds it to your project's dependencies.

Next, we'll configure FCL to connect to the Flow Testnet. An Access Node serves as the primary point of interaction for clients to communicate with the Flow network. It provides a gateway for submitting transactions, querying data, and retrieving information.
Next, we'll configure FCL to connect to the [Flow Testnet](../../networks/flow-networks/accessing-testnet.md). An [Access Node](../../networks/node-ops/access-onchain-data/access-nodes/accessing-data/access-api.md) serves as the primary point of interaction for clients to communicate with the Flow network. It provides a gateway for submitting transactions, querying data, and retrieving information.

In `src/App.js`, import FCL and add the configuration code:

Expand Down

0 comments on commit ca0ad26

Please sign in to comment.