Fork of atp.tools as a universal profile for people on the ATmosphere
1import { AppBskyEmbedImagesLayout } from "./appBskyEmbedImages";
2import BlobLayout from "./blob";
3
4export const getComponent = (type: string) => {
5 switch (type) {
6 case "app.bsky.embed.images":
7 return AppBskyEmbedImagesLayout;
8 case "blob":
9 return BlobLayout;
10 default:
11 return null;
12 }
13};