0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/console/src/App.tsx

8 lines
159 B
TypeScript
Raw Normal View History

import React from 'react';
import * as styles from './App.module.scss';
export const App = () => {
return <h1 className={styles.app}>Hello world!</h1>;
};