Datasets:
Add code/1749133081172_index.ts
Browse files- code/1749133081172_index.ts +15 -0
code/1749133081172_index.ts
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import facebook from './facebook';
|
2 |
+
import instagram from './instagram';
|
3 |
+
import tiktok from './tiktok';
|
4 |
+
import threads from './threads';
|
5 |
+
import upload from './upload';
|
6 |
+
import tools from './tools';
|
7 |
+
|
8 |
+
export default [
|
9 |
+
facebook,
|
10 |
+
instagram,
|
11 |
+
tiktok,
|
12 |
+
threads,
|
13 |
+
upload,
|
14 |
+
tools
|
15 |
+
];
|