mirror of
https://github.com/wassname/talk.git
synced 2026-07-23 13:10:20 +08:00
* feat: implement stories * test: add feature test * fix: id name * fix: improve word breaks, column widths * fix: snapshots * feat: add min width to status dropdown button * fix: polishing
13 lines
338 B
TypeScript
13 lines
338 B
TypeScript
import { Localized } from "fluent-react/compat";
|
|
import React, { StatelessComponent } from "react";
|
|
|
|
import styles from "./NotAvailable.css";
|
|
|
|
const NotAvailable: StatelessComponent = props => (
|
|
<Localized id="general-notAvailable">
|
|
<span className={styles.root}>Not available</span>
|
|
</Localized>
|
|
);
|
|
|
|
export default NotAvailable;
|