You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
335 B
10 lines
335 B
import Plain from './plain'; |
|
import Plainb from './plainb'; |
|
import Light from './light'; |
|
import Dark from './dark'; |
|
import ZhuBeidong from './zhuBeiDong'; |
|
export const plain = new Plain(); |
|
export const plainb = new Plainb(); |
|
export const light = new Light(); |
|
export const dark = new Dark(); |
|
export const zhuBeiDong = new ZhuBeidong();
|
|
|