blob: 62b886bf79d310840ba20abafa6dce8e6078604e (
plain)
1
2
3
4
5
6
7
8
|
import { type ReactNode } from "react";
import "../assets/fonts/Thai/style.css";
function ThaiFontLoader({ children }: { children: ReactNode }) {
return <>{children}</>;
}
export default ThaiFontLoader;
|