mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-03 12:05:52 +01:00
10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
import React from "react";
|
|
import { storiesOf } from "@storybook/react";
|
|
import Loading from "./Loading";
|
|
|
|
storiesOf("Loading", module).add("Default", () => (
|
|
<div>
|
|
<Loading />
|
|
</div>
|
|
));
|