9 lines
217 B
TypeScript
9 lines
217 B
TypeScript
import { TourType } from "entities/Tour";
|
|
import commentsTourSteps from "comments/tour/commentsTourSteps";
|
|
|
|
const TourStepsByType = {
|
|
[TourType.COMMENTS_TOUR]: commentsTourSteps,
|
|
};
|
|
|
|
export default TourStepsByType;
|