23 lines
638 B
TypeScript
23 lines
638 B
TypeScript
import TWPreTail from "https://esm.sh/@twind/preset-tailwind@1.1.4";
|
|
import TWPreAuto from "https://esm.sh/@twind/preset-autoprefix@1.0.7";
|
|
import React from "react";
|
|
import Component from "./deep/component.tsx";
|
|
import * as Iso from "@eno/iso";
|
|
|
|
export default ()=>
|
|
{
|
|
console.log(Iso.Meta);
|
|
const [countGet, countSet] = React.useState(1);
|
|
return <div class="p-4 font-sans">
|
|
<Iso.Metas title="Main Page!"/>
|
|
<h1 class="my-2 font(bold serif) text(2xl)">Title!!</h1>
|
|
<h2>subtitle</h2>
|
|
<Component/>
|
|
</div>;
|
|
};
|
|
|
|
export const CSS = {
|
|
presets: [TWPreTail(), TWPreAuto()],
|
|
hash:false
|
|
};
|