> ## Documentation Index
> Fetch the complete documentation index at: https://anaconda.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# anaconda sites list

export const GCell = ({children, className}) => <div className={`grid-table-cell ${className || ""}`} role="cell">
    {children}
  </div>;

export const GTH = ({children, className}) => <div className={`grid-table-th ${className || ""}`} role="columnheader">
    {children}
  </div>;

export const GRow = ({children}) => <div className="grid-table-row" role="row">{children}</div>;

export const GBody = ({children}) => <div className="grid-table-body" role="rowgroup">{children}</div>;

export const GHead = ({children}) => <div className="grid-table-head" role="rowgroup">{children}</div>;

export const GTable = ({children, className, cols}) => <div className={`grid-table not-prose overflow-hidden rounded-2xl ${className || ""}`} style={{
  "--grid-table-cols": cols
}} role="table">
    {children}
  </div>;

## Usage

```bash theme={null}
anaconda sites list
```

## Description

Displays a table of all configured sites showing the site name, domain name, and which site is set as the default.

## Options

<GTable cols="30% 70%">
  <GHead>
    <GRow>
      <GTH>Option</GTH>
      <GTH>Description</GTH>
    </GRow>
  </GHead>

  <GBody>
    <GRow>
      <GCell>`-h, --help`</GCell>
      <GCell>Show help for this command</GCell>
    </GRow>
  </GBody>
</GTable>

## Examples

**List all configured sites**

```bash theme={null}
anaconda sites list
```

**Example output:**

<Frame>
  <img src="https://mintcdn.com/anaconda-29683c67/bkcjBF1EBI3K_tIx/images/anaconda_sites_list.png?fit=max&auto=format&n=bkcjBF1EBI3K_tIx&q=85&s=aef258b23ed7d77b4707f705652becd3" alt="Command return for anaconda sites list" width="1035" height="202" data-path="images/anaconda_sites_list.png" />
</Frame>
