/* generated by Svelte vX.Y.Z */
import { assign, createElement, detachNode, init, insert, noop, proto } from "svelte/shared.js";

function link(node) {
  
  function onClick(event) {
    event.preventDefault();
    history.pushState(null, null, event.target.href);
  }

  node.addEventListener('click', onClick);

  return {
    destroy() {
      node.removeEventListener('click', onClick);
    }
  }
};

function create_main_fragment(component, ctx) {
	var a, link_action;

	return {
		c() {
			a = createElement("a");
			a.textContent = "Test";
			a.href = "#";
			link_action = link.call(component, a) || {};
		},

		m(target, anchor) {
			insert(target, a, anchor);
		},

		p: noop,

		d(detach) {
			if (detach) {
				detachNode(a);
			}

			if (typeof link_action.destroy === 'function') link_action.destroy.call(component);
		}
	};
}

function SvelteComponent(options) {
	init(this, options);
	this._state = assign({}, options.data);
	this._intro = true;

	this._fragment = create_main_fragment(this, this._state);

	if (options.target) {
		this._fragment.c();
		this._mount(options.target, options.anchor);
	}
}

assign(SvelteComponent.prototype, proto);
export default SvelteComponent;