var notification = new NotificationFx({
message : '<p>This is just a simple notice. Everything is in order and this is a <a href="#">simple link</a>.</p>',
layout : 'growl',
effect : 'scale',
type : 'notice', // notice, warning, error or success
});
notification.show();
alert('This is just a simple notice. Everything is in order and this is a simple link')
class Table {}
, в нем сохраняются методы для работы с таблицей (добавление рядков, удаление и т.д), но не штуки подобно newH1Element
или output
(их можно вынести в те же самые методы). class Table {
constructor(name, columns, rows, defaultText) {
this.name = name;
this.columns = columns;
this.rows = rows;
this.defaultText = defaultText;
}
save() {
localStorage.setItem(this.name, document.getElementById("rightControlPanel").innerHTML)
}
add() {
/..создаете тот же tr и т.д../
}
delete() {}
}
export const routes = [
{
component: Home,
path: '/',
},
{
component: Roster,
path: '/roster',
},
{
component: Schedule,
path: '/schedule',
},
];
export default function SwitchWithRoutes({ routes }) {
return (
<Switch>
{routes.map((route, i) => (
<Route
key={i}
exact={route.path === '/'}
path={route.path}
component={route.component}
/>
)}
</Switch>
);
}