Is there any way to create admin panel in react - reactjs

I want to create a mobile app in react native with firebase backend. Data should be added from admin panel(in react) and only authenticated users will see that data.how i can achieve that.
Note : - both react native and react app should use same firebase project

Yes it is possible you need to use Firebase auth, Firestore, and any other components you want like media just make sure to make all components public false so anyone can not edit anything.
Then config React-Native and React-Js firebase with the same project.
after that anything you'll from react-js and it'll be shown in React-Native mobile project.

Related

How to bundle react app as a portable widget with firebase auth?

Is there any way to bundle a React app to run inside another website like a chat widget. Iframe won't work for me since it doesn't allow google auth. I also tried parcel bundler like mentioned in this log rocket blog. But the firebase seems to be not working. Is there any other ways to do this?
A solution to run my react app inside another website without iframe

Refactor part of a react native app to be accessible on the web

at my company we have a react native app. now we want to make so that some of that functionality, basically a component accessible via react-navigation/bottom-tabs, is also accessible via web.
from what I understand we have 2 options:
refactor that into a web app and then integrate it back into the app as a web view
use react native web to port that component part of the app for the web. here I would have really no idea how to proceed and if that is possible at all
am I missing out on something? do you have any other suggestion?
thanks!

Firebase authentication pre-built UI for React Native?

I'm currently building an app with react native and firebase. I was looking to add firebase authentication and was wondering if there is a way to add firebases pre-built authentication UI to a react native app? I looked through the authentication information for Web in firebases docs but the configuration requires a redirectURL to send the user to once they're signed in which I don't have for a react native app. If it helps, I am using a Stack Navigator in my react app. Is there a work around or will I just have to create a custom UI?

React js website inside a react native app

I want to build a website which has 3-4 pages. In later stage I want to build an app for the same. i.e I want to open the website in react native app. I want to do this to avoid app updates.
I will add/remove components in website so that it will reflect in the app without any update.
what is the best approach for this?
Any code samples or blogs ?

How integrate a react-redux app into another react app

I have a react-redux app and I would like to display the content of another react app ( from another team) when a user clicks on a button.
so far I had found articles about sharing components between react apps or using npm package. like this building a react component library
but I haven't found an example to package a whole app (including reducers/actions) and imported as dependency into another app
I see also there is micro frontends but not sure how to use that with react apps.
any suggestions or examples would be highly appreciated.
thanks in advance

Resources