Log

Init the test app:

npx react-native init TestApp --template react-native@^0.63.2
cd TestApp
npx react-native-windows-init --overwrite

Test if app builds:

npx react-native run-windows

Init the module:

npx create-react-native-module --module-name "MyLibrary" MyLibrary
cd MyLibrary
yarn install
yarn upgrade react@16.13.1 --dev
yarn upgrade react-native@0.63.2 --dev

Do Creating the Visual Studio Project / Solution step of the docs.

Do Adding React Native Windows to the Visual Studio Solution step of the docs.

Do Referencing React Native Windows in your Project step of the docs.

Do Making your module ready for consumption in an app step of the docs.