File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { PACKAGE_NAMES } from '../constants'
22
33const versionsWithContent = {
44 [ PACKAGE_NAMES . RN ] : [
5+ '0.77' ,
56 '0.73' ,
67 '0.74' ,
78 '0.72' ,
Original file line number Diff line number Diff line change 1+ import Markdown from '../../components/common/Markdown'
2+ import type { ReleaseT } from '../types'
3+ const release : ReleaseT = {
4+ usefulContent : {
5+ description : (
6+ < Markdown >
7+ React Native 0.77 changes the AppDelegate template from Obj-C++ to
8+ Swift, but it's not only a syntax change. If you stick with the
9+ `AppDelegate.mm` file, be sure to add the new line with
10+ `RCTAppDependencyProvider`, as explained in the blog post below.
11+ </ Markdown >
12+ ) ,
13+ links : [
14+ {
15+ title : 'React Native 0.77 blog post' ,
16+ url : 'https://reactnative.dev/blog/2025/01/21/version-0.77#rctappdependencyprovider' ,
17+ } ,
18+ ] ,
19+ } ,
20+ }
21+
22+ export default release
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ interface ReleaseLinkT {
44}
55
66interface ReleaseUsefulContentT {
7- description : string
7+ description : string | React . ReactNode
88 links : ReleaseLinkT [ ]
99}
1010
You can’t perform that action at this time.
0 commit comments