11 lines
273 B
JavaScript
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();
|