xref: /expo/docs/public/static/talks.ts (revision 5959d3ad)
1export default [
2  {
3    title: "Keynote: community & workflows",
4    event: 'App.js Conf 2023',
5    description: "Charlie Cheever & James Ide",
6    videoId: "xHMu4oT6-SQ",
7    home: true,
8  },
9  {
10    title: "EAS: Iterate with confidence",
11    event: 'App.js Conf 2023',
12    description: "Jon Samp",
13    videoId: "LTui_5dqXyM",
14    home: true,
15  },
16  {
17    title: "Expo Router: Write Once, Route Everywhere",
18    event: 'App.js Conf 2023',
19    description: "Evan Bacon",
20    videoId: "608r8etX_cg",
21    home: true,
22  },
23  {
24    title: "Debugging should be easier",
25    event: 'App.js Conf 2023',
26    description: "Cedric van Putten",
27    videoId: "sRLunWEzwHI",
28    home: true,
29  },
30  {
31    title: 'React Native on Linux with the New Architecture',
32    event: 'App.js Conf 2023',
33    description: 'Kudo Chien',
34    videoId: 'Ca4SNa6kL_M',
35  },
36  {
37    title: 'Not your grandparents’ Expo',
38    event: 'Chain React 2023',
39    description: 'Keith Kurak',
40    videoId: 'YufZFVL-BJc',
41  },
42  {
43    title: 'Expo keynote',
44    event: 'App.js Conf 2022',
45    description: 'Charlie Cheever, Evan Bacon, Tomasz Sapeta',
46    videoId: 'ObeaMae0hug',
47  },
48  {
49    title: 'The Hidden Features from V8 to Boost React Native',
50    event: 'App.js Conf 2022',
51    description: 'Kudo Chien',
52    videoId: '6e0b2O6NRz4',
53  },
54  {
55    title: 'Publish Updates with Expo and React Native',
56    event: 'App.js Conf 2022',
57    description: 'Quinlan Jung',
58    videoId: 'd0wzwVp8dug',
59  },
60  {
61    title: 'Limitless App Development',
62    event: 'React Advanced 2021',
63    description: 'Evan Bacon',
64    videoId: 'YjJ0NG9MFkg',
65  },
66] as Talk[];
67
68export type Talk = {
69  title: string;
70  event: string;
71  description: string;
72  videoId: string;
73  home?:boolean
74}
75