21 lines
398 B
TypeScript
21 lines
398 B
TypeScript
import * as React from "react";
|
|
|
|
import * as ReactDOM from "react-dom";
|
|
|
|
import App from "./App";
|
|
|
|
import "./index.scss";
|
|
|
|
declare global {
|
|
interface Function {
|
|
Item: React.FC<any>;
|
|
Link: React.FC<any>;
|
|
Header: React.FC<any>;
|
|
Main: React.FC<any>;
|
|
Options: React.FC<any>;
|
|
SubTitle: React.FC<any>;
|
|
Title: React.FC<any>;
|
|
}
|
|
}
|
|
|
|
ReactDOM.render(<App />, document.getElementById("root"));
|