Commit 45ec2653 authored by Jacob Schatz's avatar Jacob Schatz

Refactor `explore:*`

parent 8a7bbe1f
This diff is collapsed.
import GroupsList from "~/groups_list";
import Landing from "~/landing";
export default function() {
new GroupsList();
const landingElement = document.querySelector(".js-explore-groups-landing");
if (!landingElement) return;
const exploreGroupsLanding = new Landing(
landingElement,
landingElement.querySelector(".dismiss-button"),
"explore_groups_landing_dismissed"
);
exploreGroupsLanding.toggle();
}
import ProjectsList from "~/projects_list";
export default function() {
new ProjectsList();
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment