Netflix clone using React Native
To learn a new library, framework, or language, it is often useful to clone an existing app. I'll guide you through the steps of cloning Netflix in order to learn the basics of React Native.
You will want to use the next/image component to do this and it's not very easy using remark. This is where react-markdown comes to the rescue.
Firstly, install react-markdown using your favorite package manager:
# npm
npm install react-markdown
# yarn
yarn add react-markdownOnce installed, you can now parse the markdown content and pass chunks to your components:
import rmd from "react-markdown";
const parseContent = (content) => {
return {
something: "here"
};
};