10 lines
197 B
TypeScript
10 lines
197 B
TypeScript
import { contentDefaultTr } from "./turkish";
|
|
import { contentDefaultEn } from "./english";
|
|
|
|
const contentDefault = {
|
|
tr: contentDefaultTr,
|
|
en: contentDefaultEn,
|
|
};
|
|
|
|
export { contentDefault };
|