File tree 3 files changed +24
-1
lines changed
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'
2
2
3
3
const versionsWithContent = {
4
4
[ PACKAGE_NAMES . RN ] : [
5
+ '0.77' ,
5
6
'0.73' ,
6
7
'0.74' ,
7
8
'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 {
4
4
}
5
5
6
6
interface ReleaseUsefulContentT {
7
- description : string
7
+ description : string | React . ReactNode
8
8
links : ReleaseLinkT [ ]
9
9
}
10
10
You can’t perform that action at this time.
0 commit comments