17 lines
251 B
TypeScript
17 lines
251 B
TypeScript
import { IPredictionMoon } from "./components/PredictionMoonsSlider";
|
|
|
|
export const predictionMoonsPeriods: IPredictionMoon[] = [
|
|
{
|
|
period: "today",
|
|
},
|
|
{
|
|
period: "week",
|
|
},
|
|
{
|
|
period: "month",
|
|
},
|
|
{
|
|
period: "year",
|
|
},
|
|
];
|