blob: 00483165a81343247ac06f0802ae4b80eeec8e6a (
plain)
1
2
3
4
5
6
7
8
|
import React, { useState, type ReactNode } from "react";
import "../assets/fonts/Thai/style.css";
function ThaiFontLoader({ text }: { text: string }) {
return <div>{text}</div>;
}
export default ThaiFontLoader;
|