Skip to content
Snippets Groups Projects
Commit 2e81701f authored by Kristoffer Nordström's avatar Kristoffer Nordström
Browse files

chore(core): export components

parent 0f861b49
Branches
Tags
No related merge requests found
Pipeline #173067 passed
......@@ -2,3 +2,22 @@ import "./index.pcss";
export type { AbbreviationProps } from "./components/Abbreviation";
export { Abbreviation } from "./components/Abbreviation";
export type { FigureProps } from "./components/Figure";
export { Figure } from "./components/Figure";
export type { HeadingProps } from "./components/Heading";
export {
Heading1,
Heading2,
Heading3,
Heading4,
Heading5,
Heading6,
} from "./components/Heading";
export type { LinkProps } from "./components/Link";
export { Link } from "./components/Link";
export type { ScreenReaderOnlyProps } from "./components/ScreenReaderOnly";
export { ScreenReaderOnly } from "./components/ScreenReaderOnly";
import React from "react";
import { Meta } from "@storybook/react/types-6-0";
import { Story } from "@storybook/react";
import { AbbreviationProps, Abbreviation } from "../components/Abbreviation";
import { AbbreviationProps, Abbreviation } from "../index";
export default {
title: "Components/Core/Abbreviation",
......
import React from "react";
import { Meta } from "@storybook/react/types-6-0";
import { Story } from "@storybook/react";
import { FigureProps, Figure } from "../components/Figure";
import { FigureProps, Figure } from "../index";
export default {
title: "Components/Core/Figure",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment