mirror of
https://github.com/FormidableLabs/webpack-dashboard.git
synced 2026-01-18 14:18:05 +00:00
10 lines
141 B
JavaScript
10 lines
141 B
JavaScript
export { green } from "./green";
|
|
|
|
export const red = function () {
|
|
return "red";
|
|
};
|
|
|
|
export const blue = function () {
|
|
return "blue";
|
|
};
|