29 lines
627 B
TypeScript
29 lines
627 B
TypeScript
import { ExampleDoc } from "./ExampleDoc";
|
|
import { ExampleUrl } from "./ExampleUrl";
|
|
|
|
export function SampleUrls() {
|
|
return (
|
|
<div className="flex justify-start flex-wrap gap-2">
|
|
<ExampleDoc
|
|
id="xW6aDgcbKgwC"
|
|
title="Unsplash API"
|
|
path="4.urls.regular"
|
|
/>
|
|
|
|
<ExampleDoc
|
|
id="d9udW60cLOok"
|
|
title="Tweet JSON"
|
|
path="data.0.entities.urls.0.expanded_url"
|
|
/>
|
|
|
|
<ExampleDoc
|
|
id="JZw4Wx9Mgj6r"
|
|
title="Airtable API"
|
|
path="records.3.createdTime"
|
|
/>
|
|
|
|
<ExampleDoc id="PjHo1o5MVeH4" title="Github API" />
|
|
</div>
|
|
);
|
|
}
|