Changed React App for Node.js with Express App

This commit is contained in:
2022-04-06 19:20:43 -03:00
parent a15b7cb35b
commit 540e57ce2a
11 changed files with 22 additions and 27470 deletions

View File

@@ -1,10 +0,0 @@
import React from 'react'
const App = () => {
return (
<h1>Telegram to Notion Bot</h1>
)
}
export default App

View File

@@ -1,10 +0,0 @@
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);