mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-27 06:47:20 +00:00
14 lines
253 B
JavaScript
Executable File
14 lines
253 B
JavaScript
Executable File
import config from './config_data';
|
|
import events from './event_data';
|
|
import services from './service_data';
|
|
import states from './state_data';
|
|
import panels from './panel_data';
|
|
|
|
export default {
|
|
config,
|
|
events,
|
|
panels,
|
|
services,
|
|
states,
|
|
};
|