diff options
author | 2022-08-22 19:26:44 +0100 | |
---|---|---|
committer | 2022-08-22 14:26:44 -0400 | |
commit | be2774b35767d3614fe679bf8a64d26deadffa2a (patch) | |
tree | 0ae12b2670f02ade04c5c4c1874f13719a60eb10 | |
parent | 7310e8a1780dff2ffb57f8a6cfd3d021d019f6b8 (diff) | |
download | astro-be2774b35767d3614fe679bf8a64d26deadffa2a.tar.gz astro-be2774b35767d3614fe679bf8a64d26deadffa2a.tar.zst astro-be2774b35767d3614fe679bf8a64d26deadffa2a.zip |
chore(basics): update README folder structure (#4417)
-rw-r--r-- | examples/basics/README.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/basics/README.md b/examples/basics/README.md index 96e3e151d..85c775110 100644 --- a/examples/basics/README.md +++ b/examples/basics/README.md @@ -14,6 +14,8 @@ Inside of your Astro project, you'll see the following folders and files: │ └── favicon.svg ├── src/ │ ├── components/ +│ │ └── Card.astro +│ ├── layouts/ │ │ └── Layout.astro │ └── pages/ │ └── index.astro @@ -22,7 +24,7 @@ Inside of your Astro project, you'll see the following folders and files: Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name. -There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components or layouts. +There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components. Any static assets, like images, can be placed in the `public/` directory. |