You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/cache/index.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ Cache content across Cloudflare's global server network.
20
20
21
21
Cache stores copies of frequently accessed content (such as images, videos, or webpages) in geographically distributed data centers that are located closer to end users than origin servers, reducing server load and improving website performance.
22
22
23
-
<Streamid="90d8a506e1e3935cff71223f9d785aa6"title="How Cloudflare protects and accelerates your website or app"thumbnail="https://pub-d9bf66e086fb4b639107aa52105b49dd.r2.dev/How%20Cloudflare%20%20protects%20and%20accelerates%20your%20website%20and%20app.png"/>
23
+
<Streamid="90d8a506e1e3935cff71223f9d785aa6"title="How Cloudflare protects and accelerates your website or app"thumbnail="https://pub-d9bf66e086fb4b639107aa52105b49dd.r2.dev/How%20Cloudflare%20%20protects%20and%20accelerates%20your%20website%20and%20app.png"/>
<TabItemlabel="Watch this episode"icon="seti:video">
16
16
17
17
In this video, you will learn how to use Cloudflare R2's data migration tools to transfer data from other cloud providers such as Amazon S3 and Google Cloud Storage to R2. The video will demonstrate the step-by-step process of setting up and executing a data migration.
Copy file name to clipboardExpand all lines: src/content/docs/style-guide/components/details.mdx
+16-7Lines changed: 16 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,22 +4,31 @@ styleGuide:
4
4
component: Details
5
5
---
6
6
7
+
import { Type, MetaInfo } from"~/components";
8
+
7
9
When you want to provide additional information in context, but you do not want it to clutter up the more important content, use `<Details>` to add a collapsible container.
8
10
9
11
```mdx live
10
-
import { Details } from"~/components"
12
+
import { Details } from"~/components";
11
13
12
-
<Detailsheader="Open me!">
13
-
Hello, world!
14
-
</Details>
14
+
<Detailsheader="Open me!">Hello, world!</Details>
15
15
```
16
16
17
17
You can specify the default configuration of each instance of the `<Details>` component (that is, whether it is open or closed by default).
0 commit comments