1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-09-29 03:41:59 +02:00
ntfy/web/src/components/Pricing.js

13 lines
207 B
JavaScript
Raw Normal View History

2022-12-13 21:19:40 +01:00
import * as React from 'react';
import SiteLayout from "./SiteLayout";
const Pricing = () => {
return (
<SiteLayout>
pricing
</SiteLayout>
);
};
export default Pricing;