17 lines
654 B
TypeScript
17 lines
654 B
TypeScript
|
|
import en from "./locales/en.json";
|
||
|
|
import fr from "./locales/fr.json";
|
||
|
|
export { Home } from "./components/Home";
|
||
|
|
export { Create } from "./components/Create";
|
||
|
|
export { Trends } from "./components/Trends";
|
||
|
|
export { About } from "./components/About";
|
||
|
|
export { FAQ } from "./components/FAQ";
|
||
|
|
export { Tooltip } from "./components/Tooltip";
|
||
|
|
export { Preview } from "./components/Preview";
|
||
|
|
export { Setup } from "../../apps/leafcutter/app/(main)/setup/_components/Setup";
|
||
|
|
export { GettingStartedDialog } from "./components/GettingStartedDialog";
|
||
|
|
export { VisualizationDetail } from "./components/VisualizationDetail";
|
||
|
|
export const locales = {
|
||
|
|
en,
|
||
|
|
fr,
|
||
|
|
};
|