> ## Documentation Index
> Fetch the complete documentation index at: https://balena-drskullster-tests-mintlify.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Testing one-two

> This is the test file

export const SupportedDevices = () => {
  const [devices, setDevices] = useState();
  useEffect(() => {
    (async () => {
      const response = await fetch('https://api.balena-cloud.com/v7/device_type?$select=name,slug,logo&$expand=is_of__cpu_architecture($select=slug)&$filter=is_default_for__application/any(idfa:((idfa/is_host%20eq%20true)%20and%20(idfa/is_archived%20eq%20false)%20and%20(idfa/owns__release/any(r:(status%20eq%20%27success%27)%20and%20(is_final%20eq%20true)%20and%20(is_invalidated%20eq%20false))))%20and%20not(contains(idfa/app_name,%27-esr%27)))&$orderby=name%20asc');
      const data = await response.json();
      setDevices(data.d);
    })();
  }, []);
  if (!devices) {
    return <i>loading</i>;
  }
  if (!devices.length) {
    return <i>No devices found</i>;
  }
  return <table className="not-prose">
            <thead>
            <tr>
                <th></th>
                <th>Device name</th>
                <th>Slug</th>
                <th>Arch</th>
            </tr>
            </thead>
            <tbody>
            {devices.map(device => <tr>
                    <td><img src={device.logo} alt="" style={{
    width: '60px',
    height: '60px'
  }} /></td>
                    <td>{device.name}</td>
                    <td><code>{device.slug}</code></td>
                    <td><code>{device.is_of__cpu_architecture[0]?.slug}</code></td>
                </tr>)}
            </tbody>
        </table>;
};

<Info>
  Well, let's just say we are going to test Mintlify with some custom, editor-based pages!
</Info>

## Lorem ipsum

The editor feels nice.

<img src="https://mintcdn.com/balena-drskullster-tests-mintlify/Qhj2liPiGcDoIum2/images/DSC_9299.JPG?fit=max&auto=format&n=Qhj2liPiGcDoIum2&q=85&s=5be5d2ffe180ea2ef664f5e9eb86b4c0" alt="Dandelions" width="1936" height="1296" data-path="images/DSC_9299.JPG" />

Are those Dandelions? I don't think so.

<Tip>
  Did you know? Dandelion comes from French 'dent de lion', which means 'Lion tooth'. Crazy!
</Tip>

So this won't be visible until I publish my changes.

<SupportedDevices />

well?
