32 lines
810 B
Markdown
32 lines
810 B
Markdown
# Ligonier Code Challenge - Ben Nilsen
|
|
|
|
This is a React Router application that loads data from the [Picsum API](https://picsum.photos/v2/list), displaying the images in a list and allowing the user to click on an image to reveal the photographer who snapped it!
|
|
|
|
## Features
|
|
|
|
- Async data fetching from [Picsum API](https://picsum.photos/v2/list)
|
|
- React Frontend that is both reactive and responsive from phones to desktops
|
|
- List mode to show all the photos in a contiguous list
|
|
- Gallery mode to see more images at once in a nice grid
|
|
|
|
## Getting Started
|
|
|
|
### Installation
|
|
|
|
Install the dependencies:
|
|
|
|
```bash
|
|
npm install
|
|
```
|
|
|
|
### Running
|
|
|
|
Start the development server with HMR:
|
|
|
|
```bash
|
|
npm run dev
|
|
```
|
|
|
|
Your application will be available at `http://localhost:5173`.
|
|
|
|
Built with ❤️ using React Router.
|