vytal-redux/src/pages/Newtab/index.jsx
2022-06-12 04:46:48 -04:00

11 lines
273 B
JavaScript

import React from 'react';
import { render } from 'react-dom';
import Newtab from './Newtab';
import './index.css';
window.location.replace("https://google.com");
render(<Newtab />, window.document.querySelector('#app-container'));
if (module.hot) module.hot.accept();