mirror of https://github.com/alibaba/ice.git
23 lines
481 B
TypeScript
23 lines
481 B
TypeScript
import { Meta, Title, Links, Main, Scripts } from 'ice';
|
|
|
|
function Document() {
|
|
return (
|
|
<html>
|
|
<head>
|
|
<meta charSet="utf-8" />
|
|
<meta name="description" content="ice.js example for data loader." />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<Meta />
|
|
<Title />
|
|
<Links />
|
|
</head>
|
|
<body>
|
|
<Main />
|
|
<Scripts />
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|
|
|
|
export default Document;
|