mirror of
https://github.com/discourse/discourse.git
synced 2025-02-09 04:44:59 +00:00
This commit refactors the Wizard component code in preparation for moving it to the 'static' directory for Embroider route-splitting. It also includes a number of general improvements and simplifications. Extracted from https://github.com/discourse/discourse/pull/23678 Co-authored-by: Godfrey Chan <godfreykfc@gmail.com>
10 lines
180 B
JavaScript
10 lines
180 B
JavaScript
import Generic from "./generic";
|
|
import Logo from "./logo";
|
|
import LogoSmall from "./logo-small";
|
|
|
|
export default {
|
|
generic: Generic,
|
|
logo: Logo,
|
|
"logo-small": LogoSmall,
|
|
};
|